Skip to content
This repository has been archived by the owner on Jan 8, 2020. It is now read-only.

Commit

Permalink
fixed mistake in unittest
Browse files Browse the repository at this point in the history
  • Loading branch information
yp28 committed Mar 18, 2015
1 parent ed92a8d commit ae5d1ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/ZendTest/Db/Adapter/Driver/Pdo/ResultTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public function testFetchModeAnonymousObject()
$stub
->expects($this->any())
->method('fetch')
->will($this->returnCallback(function () {return uniqid();}));
->will($this->returnCallback(function () {return new \stdClass;}));

$result = new Result();
$result->initialize($stub, null);
Expand Down

0 comments on commit ae5d1ac

Please sign in to comment.