diff options
author | Lukas Reschke <lukas@owncloud.com> | 2014-11-21 10:48:05 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2014-11-21 10:54:41 +0100 |
commit | 5f6f54e785a76b27ff8c3514a45c34d633f4cc65 (patch) | |
tree | 5fc31bb28a9f62f510af70572dadfdd72e91f95d /tests/lib/updater.php | |
parent | f8421958b3d06379c9dbfec49a16cf072dff7591 (diff) | |
download | nextcloud-server-5f6f54e785a76b27ff8c3514a45c34d633f4cc65.tar.gz nextcloud-server-5f6f54e785a76b27ff8c3514a45c34d633f4cc65.zip |
Rename providers to not begin with test
Fixes https://github.com/owncloud/core/issues/12347
Diffstat (limited to 'tests/lib/updater.php')
-rw-r--r-- | tests/lib/updater.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lib/updater.php b/tests/lib/updater.php index cc82450cfb6..155dccf78a7 100644 --- a/tests/lib/updater.php +++ b/tests/lib/updater.php @@ -10,7 +10,7 @@ namespace OC; class UpdaterTest extends \Test\TestCase { - public function testVersionCompatbility() { + public function versionCompatibilityTestData() { return array( array('1.0.0.0', '2.2.0', true), array('1.1.1.1', '2.0.0', true), @@ -24,7 +24,7 @@ class UpdaterTest extends \Test\TestCase { } /** - * @dataProvider testVersionCompatbility + * @dataProvider versionCompatibilityTestData */ function testIsUpgradePossible($oldVersion, $newVersion, $result) { $updater = new Updater(); |