diff options
author | xue <> | 2006-10-20 01:04:51 +0000 |
---|---|---|
committer | xue <> | 2006-10-20 01:04:51 +0000 |
commit | 2cde8e5fdc97489c0dae5e3f8acf6036229ec343 (patch) | |
tree | 7e2fca2d7d2ca194a300eb3320d953aed37b3131 /tests/unit/Collections/TListTest.php | |
parent | 3b827980972fa2bb1cfdf7aaf2dadd94012a2ab1 (diff) |
Unit test fixes for collection classes due to implementation of Countable interface.
Diffstat (limited to 'tests/unit/Collections/TListTest.php')
-rw-r--r-- | tests/unit/Collections/TListTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/Collections/TListTest.php b/tests/unit/Collections/TListTest.php index c9190da6..e090728c 100644 --- a/tests/unit/Collections/TListTest.php +++ b/tests/unit/Collections/TListTest.php @@ -185,7 +185,7 @@ class TListTest extends PHPUnit2_Framework_TestCase { } public function testArrayMisc() { - $this->assertEquals(1,count($this->list)); + $this->assertEquals($this->list->Count,count($this->list)); $this->assertTrue(isset($this->list[1])); $this->assertFalse(isset($this->list[2])); } |