diff options
Diffstat (limited to 'tests/unit/Collections/TMapTest.php')
-rw-r--r-- | tests/unit/Collections/TMapTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/Collections/TMapTest.php b/tests/unit/Collections/TMapTest.php index af92fd6a..f7661afd 100644 --- a/tests/unit/Collections/TMapTest.php +++ b/tests/unit/Collections/TMapTest.php @@ -146,7 +146,7 @@ class TMapTest extends PHPUnit2_Framework_TestCase { public function testArrayMisc() { - $this->assertEquals(1,count($this->map)); + $this->assertEquals($this->map->Count,count($this->map)); $this->assertTrue(isset($this->map['key1'])); $this->assertFalse(isset($this->map['unknown key'])); } |