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

Commit

Permalink
Merge branch 'hotfix/ZF2-51' of https://github.com/postalservice14/zf2
Browse files Browse the repository at this point in the history
…into feature/zf2-51

Conflicts:
	tests/Zend/Config/ConfigTest.php
	tests/Zend/Controller/Action/Helper/ActionStackTest.php
	tests/Zend/Controller/Router/RewriteTest.php
	tests/Zend/Controller/Router/Route/ChainTest.php
	tests/Zend/Controller/Router/Route/ModuleTest.php
	tests/Zend/Controller/Router/Route/RegexTest.php
	tests/Zend/Controller/Router/Route/StaticTest.php
	tests/Zend/Controller/Router/RouteTest.php
	tests/Zend/Db/Adapter/AbstractTest.php
	tests/Zend/Db/Adapter/PdoIbmTest.php
	tests/Zend/Db/Adapter/PdoMysqlTest.php
	tests/Zend/Db/Adapter/PdoSqliteTest.php
	tests/Zend/Db/Adapter/StaticTest.php
	tests/Zend/Db/Select/AbstractTest.php
	tests/Zend/Db/Statement/AbstractPdoTest.php
	tests/Zend/Db/Statement/AbstractTest.php
	tests/Zend/Db/Statement/MysqliTest.php
	tests/Zend/Http/CookieJarTest.php
	tests/Zend/Json/JsonTest.php
	tests/Zend/Loader/PluginLoaderTest.php
  • Loading branch information
weierophinney committed Aug 25, 2011
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/DbStatementTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ public function testFetchObject()
$stmt->append($row);

$object = $stmt->fetchObject();
$this->assertType('stdClass', $object);
$this->assertInternalType('object', $object);
$this->assertEquals('bar', $object->foo);
$this->assertEquals('baz', $object->bar);
}
Expand Down

0 comments on commit 89b12e3

Please sign in to comment.