public function testUpdate()
 {
     $account = $this->sut->create(self::$DI['oauth2-app-user'], self::$DI['user']);
     $account->setApiVersion(24);
     $this->sut->update($account);
     $account = self::$DI['app']['repo.api-accounts']->find($account->getId());
     $this->assertEquals(24, $account->getApiVersion());
 }