Skip to content

Commit

Permalink
Update test.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed May 19, 2014
1 parent a13c7a3 commit 049f02e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions framework/ActiveSync/test/Horde/ActiveSync/StateTest/Base.php
Expand Up @@ -450,7 +450,12 @@ protected function _testEmptyResponse()
$cache->save();

$collections = $this->getCollectionHandler();
// False since we don't have hangingSync.
$this->assertEquals(false, $collections->canSendEmptyResponse());

$collections->hangingSync = true;
$this->assertEquals(true, $collections->canSendEmptyResponse());

$collections->importedChanges = true;
$this->assertEquals(false, $collections->canSendEmptyResponse());
}
Expand Down

0 comments on commit 049f02e

Please sign in to comment.