diff options
author | Vincent Petry <pvince81@owncloud.com> | 2015-02-27 13:32:46 +0100 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2015-02-27 13:32:46 +0100 |
commit | 1750e7b76d9e625bb94c5599bb6fa713a3441bfc (patch) | |
tree | 0a118b599137c38d6415c56818ea7e4e3840cd4a /tests/lib | |
parent | 32c9139ac22788d9020ff964de5cb8f014a73702 (diff) | |
download | nextcloud-server-1750e7b76d9e625bb94c5599bb6fa713a3441bfc.tar.gz nextcloud-server-1750e7b76d9e625bb94c5599bb6fa713a3441bfc.zip |
Fixed expected warning count on repair fail
Diffstat (limited to 'tests/lib')
-rw-r--r-- | tests/lib/repair/repairlegacystorage.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/repair/repairlegacystorage.php b/tests/lib/repair/repairlegacystorage.php index 6d14a045c0c..4167ddff85a 100644 --- a/tests/lib/repair/repairlegacystorage.php +++ b/tests/lib/repair/repairlegacystorage.php @@ -191,7 +191,7 @@ class TestRepairLegacyStorages extends \Test\TestCase { $this->repair->run(); - $this->assertEquals(1, count($this->warnings)); + $this->assertEquals(2, count($this->warnings)); $this->assertEquals('Could not repair legacy storage ', substr(current($this->warnings), 0, 32)); // storages left alone |