From d2d41978051dddb14ecf2f388022fa8732bfed49 Mon Sep 17 00:00:00 2001 From: Phil Davis Date: Wed, 4 Nov 2020 17:52:48 +0545 Subject: [PATCH] Do not cleanup user data under-the-hood when testing on OCIS --- tests/acceptance/features/bootstrap/Provisioning.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/acceptance/features/bootstrap/Provisioning.php b/tests/acceptance/features/bootstrap/Provisioning.php index ac48e9979abd..784ed09b5bfc 100644 --- a/tests/acceptance/features/bootstrap/Provisioning.php +++ b/tests/acceptance/features/bootstrap/Provisioning.php @@ -4646,7 +4646,7 @@ public function theListOfGroupsReturnedByTheApiShouldBeEmpty() { public function afterScenario() { $this->restoreParametersAfterScenario(); - if (OcisHelper::isTestingOnOcisOrReva() && $this->someUsersHaveBeenCreated()) { + if (OcisHelper::isTestingOnReva() && $this->someUsersHaveBeenCreated()) { foreach ($this->getCreatedUsers() as $user) { $this->deleteAllSharesForUser($user["actualUsername"]); OcisHelper::deleteRevaUserData($user["actualUsername"]);