Skip to content

Commit

Permalink
EWPP-3512: Operation order changed when using drush.services.yml.
Browse files Browse the repository at this point in the history
  • Loading branch information
brummbar committed Jul 28, 2023
1 parent 51ce21d commit 6542b62
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ public function testEuLoginUsersDataSanitization() {

$this->drush('sql:sanitize');
$expected = 'The following operations will be performed:' . PHP_EOL . PHP_EOL;
$expected .= '* Sanitise user fields.' . PHP_EOL;
$expected .= '* Truncate sessions table.' . PHP_EOL;
$expected .= '* Sanitize text fields associated with users.' . PHP_EOL;
$expected .= '* Sanitize user passwords.' . PHP_EOL;
$expected .= '* Sanitize user emails.';
$expected .= '* Sanitize user emails.' . PHP_EOL;
$expected .= '* Sanitise user fields.';
$this->assertOutputEquals($expected);

$user = \Drupal::entityTypeManager()->getStorage('user')->load($user->id());
Expand Down

0 comments on commit 6542b62

Please sign in to comment.