diff options
author | Andreas Fischer <bantu@owncloud.com> | 2013-12-17 01:28:05 +0100 |
---|---|---|
committer | Andreas Fischer <bantu@owncloud.com> | 2013-12-21 19:56:14 +0100 |
commit | 4bc2a22317dd65f142cf697cd10ed6920d930544 (patch) | |
tree | 7b8625f810440eae4a117c9aa63daabb8f5982c5 /tests/lib/dbschema.php | |
parent | 63a2bea7ec0171595f2a96639827e9d477fc6878 (diff) | |
download | nextcloud-server-4bc2a22317dd65f142cf697cd10ed6920d930544.tar.gz nextcloud-server-4bc2a22317dd65f142cf697cd10ed6920d930544.zip |
Remove all uses of numRows().
Diffstat (limited to 'tests/lib/dbschema.php')
-rw-r--r-- | tests/lib/dbschema.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/dbschema.php b/tests/lib/dbschema.php index 7de90c047ca..4a7b7f7aac0 100644 --- a/tests/lib/dbschema.php +++ b/tests/lib/dbschema.php @@ -103,7 +103,7 @@ class Test_DBSchema extends PHPUnit_Framework_TestCase { break; } - $name = $result->fetchOne(); //FIXME checking with '$result->numRows() === 1' does not seem to work? + $name = $result->fetchOne(); if ($name === $table) { return true; } else { |