Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
34929bf7
Commit
34929bf7
authored
Oct 01, 2012
by
Jennifer Hodgdon
Browse files
Issue
#1797516
by Lars Toomre: Remove t() from test assertion messages in syslog module
parent
eaee4510
Changes
1
Hide whitespace changes
Inline
Side-by-side
core/modules/syslog/lib/Drupal/syslog/Tests/SyslogTest.php
View file @
34929bf7
...
...
@@ -45,7 +45,7 @@ function testSettings() {
$this
->
drupalGet
(
'admin/config/development/logging'
);
if
(
$this
->
parse
())
{
$field
=
$this
->
xpath
(
'//option[@value=:value]'
,
array
(
':value'
=>
LOG_LOCAL6
));
// Should be one field.
$this
->
assertTrue
(
$field
[
0
][
'selected'
]
==
'selected'
,
t
(
'Facility value saved.'
)
)
;
$this
->
assertTrue
(
$field
[
0
][
'selected'
]
==
'selected'
,
'Facility value saved.'
);
}
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment