Skip to content

Commit

Permalink
Updated test to pass
Browse files Browse the repository at this point in the history
  • Loading branch information
Eugene Ritter committed Mar 26, 2018
1 parent 682fdad commit 8782db5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/TestCase/Collection/CollectionTest.php
Expand Up @@ -1171,7 +1171,7 @@ public function testPrepend()
{
$collection = new Collection([1, 2, 3]);
$combined = $collection->prepend(['a']);
$this->assertEquals(['a', 1, 2, 3], $combined->toArray());
$this->assertEquals(['a', 1, 2, 3], $combined->toList());

$collection = new Collection(['c' => 3, 'd' => 4]);
$combined = $collection->prepend(['a' => 1, 'b' => 2]);
Expand Down

0 comments on commit 8782db5

Please sign in to comment.