Skip to content

Commit

Permalink
Fixing too inspetive test
Browse files Browse the repository at this point in the history
  • Loading branch information
Slamdunk committed Oct 15, 2012
1 parent 20469c5 commit 9d6860c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/ZendTest/Session/SessionManagerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ public function testPassingClearStorageOptionWhenCallingDestroyClearsStorage()
$storage = $this->manager->getStorage();
$storage['foo'] = 'bar';
$this->manager->destroy(array('clear_storage' => true));
$this->assertSame(array(), (array) $storage);
$this->assertFalse(isset($storage['foo']));
}

/**
Expand Down

0 comments on commit 9d6860c

Please sign in to comment.