commit 083cf97a3da66be6a8320079376da8ded0bdbeb4 Author: Daniel Pepin Date: Thu May 9 23:03:11 2013 -0400 Fixed email var in assertText(). diff --git a/core/modules/user/lib/Drupal/user/Tests/UserCancelTest.php b/core/modules/user/lib/Drupal/user/Tests/UserCancelTest.php index 0f37c0d..c57c5af 100644 --- a/core/modules/user/lib/Drupal/user/Tests/UserCancelTest.php +++ b/core/modules/user/lib/Drupal/user/Tests/UserCancelTest.php @@ -476,7 +476,7 @@ public function testMassUserCancelByAdminConfirm() { // Make sure we send a user cancel confirmation e-mail. $this->assertMail('id', 'user_cancel_confirm', 'User cancel confirmation e-mail has been sent.'); foreach ($users as $account) { - $this->assertText(t('Cancellation request sent to %email.', array('%mail' => $account->mail))); + $this->assertText(t('Cancellation request sent to %email.', array('%email' => $account->mail))); $user = user_load($account->uid, TRUE); // Check that account exists. $this->assertTrue($user->uid, 'User account exists.');