diff --git a/core/modules/user/src/Tests/UserDeleteTest.php b/core/modules/user/src/Tests/UserDeleteTest.php index d6ddbc1..1c91311 100644 --- a/core/modules/user/src/Tests/UserDeleteTest.php +++ b/core/modules/user/src/Tests/UserDeleteTest.php @@ -49,7 +49,7 @@ function testUserDeleteMultiple() { ->countQuery() ->execute() ->fetchField(); - $this->assertTrue($roles_after_deletion == 0, 'Role assigments deleted along with users'); + $this->assertTrue($roles_after_deletion == 0, 'Role assignments deleted along with users'); // Test if the users are deleted, user_load() will return FALSE. $this->assertFalse(user_load($user_a->id()), format_string('User with id @uid deleted.', array('@uid' => $user_a->id()))); $this->assertFalse(user_load($user_b->id()), format_string('User with id @uid deleted.', array('@uid' => $user_b->id())));