diff options
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()); } |