diff --git a/core/modules/syslog/tests/src/Functional/SyslogTest.php b/core/modules/syslog/tests/src/Functional/SyslogTest.php index b0973ea..5f25670 100644 --- a/core/modules/syslog/tests/src/Functional/SyslogTest.php +++ b/core/modules/syslog/tests/src/Functional/SyslogTest.php @@ -31,7 +31,8 @@ function testSettings() { $this->assertText(t('The configuration options have been saved.')); $this->drupalGet('admin/config/development/logging'); - $field = $this->xpath('//option[@value=:value]', array(':value' => LOG_LOCAL6)); // Should be one field. + // Should be one field. + $field = $this->xpath('//option[@value=:value]', array(':value' => LOG_LOCAL6)); $this->assertSame('selected', $field[0]->getAttribute('selected'), 'Facility value saved.'); } }