diff options
author | ctrlaltca@gmail.com <> | 2011-05-21 21:26:33 +0000 |
---|---|---|
committer | ctrlaltca@gmail.com <> | 2011-05-21 21:26:33 +0000 |
commit | b6ec303f50cfa233374d12b06a539025da70e303 (patch) | |
tree | 171b7488e0261dd805435f177953f5157948979d /tests/unit/Collections/TQueueTest.php | |
parent | c266d79c8370a536c9ccd0e9f0506ed65a22b9fe (diff) |
up-ported to trunk/ unit tests fixes from r2921
Diffstat (limited to 'tests/unit/Collections/TQueueTest.php')
-rw-r--r-- | tests/unit/Collections/TQueueTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/Collections/TQueueTest.php b/tests/unit/Collections/TQueueTest.php index d04f647e..c5ec2b6b 100644 --- a/tests/unit/Collections/TQueueTest.php +++ b/tests/unit/Collections/TQueueTest.php @@ -96,7 +96,7 @@ class TQueueTest extends PHPUnit_Framework_TestCase { public function testGetIterator() { $queue = new TQueue(array(1, 2)); - self::assertType('TQueueIterator', $queue->getIterator()); + self::assertType('ArrayIterator', $queue->getIterator()); $n = 0; $found = 0; foreach($queue as $index => $item) { |