summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorChristophe.Boulain <>2010-04-12 07:09:28 +0000
committerChristophe.Boulain <>2010-04-12 07:09:28 +0000
commitea61b2565c76a9c663e59fed36702cb2c4ecf541 (patch)
tree76e3efb989d4aeeb84442ffe604843dc1660e099 /tests
parent4eaf5403f98a7c9cb01bfb53e020326db0ca9fc2 (diff)
Fixed Issue#246
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/Collections/TQueueTest.php2
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());
}