Skip to content

Commit 594b1a9

Browse files
committed
Removed debug comments
1 parent 6027dd2 commit 594b1a9

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

tests/E2E/Controller/v1/Profile/GroupsControllerTest.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -202,13 +202,13 @@ public static function dataProviderTestThatGroupsActionReturnExpectedWithValidAp
202202
{
203203
$rolesService = self::getRolesService();
204204

205-
#if (getenv('USE_ALL_USER_COMBINATIONS') === 'yes') {
205+
if (getenv('USE_ALL_USER_COMBINATIONS') === 'yes') {
206206
foreach ($rolesService->getRoles() as $role) {
207207
yield [str_pad($rolesService->getShort($role), 40, '_'), $role];
208208
}
209-
#} else {
209+
} else {
210210
yield [str_pad($rolesService->getShort(Role::LOGGED->value), 40, '_'), Role::LOGGED->value];
211-
#}
211+
}
212212
}
213213

214214
/**

tests/E2E/Controller/v1/Profile/IndexControllerTest.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -176,13 +176,13 @@ public static function dataProviderTestThatProfileActionReturnsExpectedWithValid
176176
{
177177
$rolesService = self::getRolesService();
178178

179-
#if (getenv('USE_ALL_USER_COMBINATIONS') === 'yes') {
179+
if (getenv('USE_ALL_USER_COMBINATIONS') === 'yes') {
180180
foreach ($rolesService->getRoles() as $role) {
181181
yield [str_pad($rolesService->getShort($role), 40, '_'), $role];
182182
}
183-
#} else {
183+
} else {
184184
yield [str_pad($rolesService->getShort(Role::LOGGED->value), 40, '_'), Role::LOGGED->value];
185-
#}
185+
}
186186
}
187187

188188
/**

0 commit comments

Comments
 (0)