diff options
author | Christophe.Boulain <> | 2010-04-12 07:09:28 +0000 |
---|---|---|
committer | Christophe.Boulain <> | 2010-04-12 07:09:28 +0000 |
commit | ea61b2565c76a9c663e59fed36702cb2c4ecf541 (patch) | |
tree | 76e3efb989d4aeeb84442ffe604843dc1660e099 /tests/unit | |
parent | 4eaf5403f98a7c9cb01bfb53e020326db0ca9fc2 (diff) |
Fixed Issue#246
Diffstat (limited to 'tests/unit')
-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 1c755480..d04f647e 100644 --- a/tests/unit/Collections/TQueueTest.php +++ b/tests/unit/Collections/TQueueTest.php @@ -57,7 +57,7 @@ class TQueueTest extends PHPUnit_Framework_TestCase { } public function testPeek() { - $queue = new TQueue(array(1)); + $queue = new TQueue(array(1,2,3)); self::assertEquals(1, $queue->peek()); } |