diff --git a/module/VuFind/src/VuFindTest/Unit/UserCreationTrait.php b/module/VuFind/src/VuFindTest/Unit/UserCreationTrait.php index d87708c19c7b7f0de42c1fa397fb91bb077043ec..10c30b2144ce571e15f76c99ffd0528d38338cf5 100644 --- a/module/VuFind/src/VuFindTest/Unit/UserCreationTrait.php +++ b/module/VuFind/src/VuFindTest/Unit/UserCreationTrait.php @@ -74,7 +74,7 @@ trait UserCreationTrait * * @throws \Exception */ - protected static function tearDownUsers($users) + protected static function removeUsers($users) { // If CI is not running, all tests were skipped, so no work is necessary: $test = new static(); // create instance of current class diff --git a/module/VuFind/tests/integration-tests/src/VuFindTest/Auth/DatabaseTest.php b/module/VuFind/tests/integration-tests/src/VuFindTest/Auth/DatabaseTest.php index 6ad3e11ebcd552f1e0778a0ab619b0fa6a89d0f3..5d41a986317e1f8a7e6789df7ab67f35b2b3a666 100644 --- a/module/VuFind/tests/integration-tests/src/VuFindTest/Auth/DatabaseTest.php +++ b/module/VuFind/tests/integration-tests/src/VuFindTest/Auth/DatabaseTest.php @@ -281,6 +281,6 @@ class DatabaseTest extends \VuFindTest\Unit\DbTestCase */ public static function tearDownAfterClass() { - static::tearDownUsers('testuser'); + static::removeUsers('testuser'); } } \ No newline at end of file diff --git a/module/VuFind/tests/integration-tests/src/VuFindTest/Auth/ILSTest.php b/module/VuFind/tests/integration-tests/src/VuFindTest/Auth/ILSTest.php index 696102a8566adb453ccec70d6970212090702898..0c6ad97b87b029ba2aaa494bdb0eba8173b1b290 100644 --- a/module/VuFind/tests/integration-tests/src/VuFindTest/Auth/ILSTest.php +++ b/module/VuFind/tests/integration-tests/src/VuFindTest/Auth/ILSTest.php @@ -190,7 +190,7 @@ class ILSTest extends \VuFindTest\Unit\DbTestCase */ public static function tearDownAfterClass() { - static::tearDownUsers('testuser'); + static::removeUsers('testuser'); } /** diff --git a/module/VuFind/tests/integration-tests/src/VuFindTest/Auth/ShibbolethTest.php b/module/VuFind/tests/integration-tests/src/VuFindTest/Auth/ShibbolethTest.php index 0e72749c24d159bd404733872295272d7cd46921..2af5ff73b83c8073690d39cd0dbcf77fe9d75711 100644 --- a/module/VuFind/tests/integration-tests/src/VuFindTest/Auth/ShibbolethTest.php +++ b/module/VuFind/tests/integration-tests/src/VuFindTest/Auth/ShibbolethTest.php @@ -224,6 +224,6 @@ class ShibbolethTest extends \VuFindTest\Unit\DbTestCase */ public static function tearDownAfterClass() { - static::tearDownUsers('testuser'); + static::removeUsers('testuser'); } } \ No newline at end of file diff --git a/module/VuFind/tests/integration-tests/src/VuFindTest/Mink/FavoritesTest.php b/module/VuFind/tests/integration-tests/src/VuFindTest/Mink/FavoritesTest.php index 80c1abdbdb3b801b85fd00a7a6f3b92cc4f06e31..0e35be7a0c1466142c6d78b67467e2392d207a89 100644 --- a/module/VuFind/tests/integration-tests/src/VuFindTest/Mink/FavoritesTest.php +++ b/module/VuFind/tests/integration-tests/src/VuFindTest/Mink/FavoritesTest.php @@ -369,6 +369,6 @@ class FavoritesTest extends \VuFindTest\Unit\MinkTestCase */ public static function tearDownAfterClass() { - static::tearDownUsers(['username1', 'username2']); + static::removeUsers(['username1', 'username2']); } }