Skip to content
Snippets Groups Projects
Commit d1ba2473 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #2311027 by pwolanin: Fixed WebTestCase using $ instead of % for placeholder text.

parent e2d0ecae
No related branches found
No related tags found
No related merge requests found
......@@ -2253,7 +2253,7 @@ protected function clickLink($label, $index = 0) {
$this->pass(String::format('Clicked link %label (@url_target) from @url_before', array('%label' => $label, '@url_target' => $url_target, '@url_before' => $url_before)), 'Browser');
return $this->drupalGet($url_target);
}
$this->fail(String::format('Link $label does not exist on @url_before', array('%label' => $label, '@url_before' => $url_before)), 'Browser');
$this->fail(String::format('Link %label does not exist on @url_before', array('%label' => $label, '@url_before' => $url_before)), 'Browser');
return FALSE;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment