diff options
author | Bernhard Posselt <dev@bernhard-posselt.com> | 2015-01-29 20:10:29 +0100 |
---|---|---|
committer | Bernhard Posselt <dev@bernhard-posselt.com> | 2015-01-29 20:10:29 +0100 |
commit | 84a47645b9d6eef678be6a33eafff2e290e4a782 (patch) | |
tree | ff8400ccc219c0eed51e7310cd3bc553474d4b41 | |
parent | 983563d7d94429778a7e43596018ce514b60250c (diff) | |
download | nextcloud-server-84a47645b9d6eef678be6a33eafff2e290e4a782.tar.gz nextcloud-server-84a47645b9d6eef678be6a33eafff2e290e4a782.zip |
fix indention
-rw-r--r-- | tests/lib/appframework/db/mappertestutility.php | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/tests/lib/appframework/db/mappertestutility.php b/tests/lib/appframework/db/mappertestutility.php index 2a2bb1ab500..0053b2c682d 100644 --- a/tests/lib/appframework/db/mappertestutility.php +++ b/tests/lib/appframework/db/mappertestutility.php @@ -88,15 +88,14 @@ abstract class MapperTestUtility extends \Test\TestCase { } return $result; - } + } )); if ($expectClose) { - $closing = $this->once(); - } else { - $closing = $this->any(); - } - $this->pdoResult->expects($closing) - ->method('closeCursor'); + $closing = $this->once(); + } else { + $closing = $this->any(); + } + $this->pdoResult->expects($closing)->method('closeCursor'); $index = 1; foreach($arguments as $argument) { |