diff --git a/core/modules/simpletest/lib/Drupal/simpletest/WebTestBase.php b/core/modules/simpletest/lib/Drupal/simpletest/WebTestBase.php index 075b11c..823b3b8 100644 --- a/core/modules/simpletest/lib/Drupal/simpletest/WebTestBase.php +++ b/core/modules/simpletest/lib/Drupal/simpletest/WebTestBase.php @@ -2629,7 +2629,7 @@ protected function assertFieldById($id, $value = '', $message = '', $other = 'Br * @return * TRUE on pass, FALSE on fail. */ - protected function assertNoFieldById($id, $value = '', $message = '') { + protected function assertNoFieldById($id, $value = '', $message = '', $group = 'Browser') { return $this->assertNoFieldByXPath($this->constructFieldXpath('id', $id), $value, $message ? $message : t('Did not find field by id @id', array('@id' => $id)), $group); }