diff options
author | ctrlaltca <> | 2013-01-06 17:27:51 +0000 |
---|---|---|
committer | ctrlaltca <> | 2013-01-06 17:27:51 +0000 |
commit | 55eb721567c84d0a30914f76615691990d005ac3 (patch) | |
tree | 14b283e6f7980e3c45f6109e90fd0fd0f280c8c0 /tests/unit/Collections/TPriorityMapTest.php | |
parent | 1f6d9caf8397416747aa2105b2aac352cdf92fe3 (diff) |
fixed old/broken unit tests; update documentation
Diffstat (limited to 'tests/unit/Collections/TPriorityMapTest.php')
-rw-r--r-- | tests/unit/Collections/TPriorityMapTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/Collections/TPriorityMapTest.php b/tests/unit/Collections/TPriorityMapTest.php index c7d56243..7c6ed498 100644 --- a/tests/unit/Collections/TPriorityMapTest.php +++ b/tests/unit/Collections/TPriorityMapTest.php @@ -352,7 +352,7 @@ class TPriorityMapTest extends PHPUnit_Framework_TestCase { $this->assertEquals(1, $priorities[1]); $this->assertEquals(10, $priorities[2]); $this->assertEquals(100, $priorities[3]); - $this->assertEquals(null, $priorities[4]); + $this->assertEquals(false, isset($priorities[4])); } |