diff --git a/core/modules/views/src/Tests/ViewExecutableTest.php b/core/modules/views/src/Tests/ViewExecutableTest.php index 4b0e73f..8492790 100644 --- a/core/modules/views/src/Tests/ViewExecutableTest.php +++ b/core/modules/views/src/Tests/ViewExecutableTest.php @@ -320,14 +320,14 @@ public function testPropertyMethods() { $this->assertEqual($view->getPath(), $override_path); // Test the getUrl method(). - $url = $this->randomString(); + $url = 'foo'; $this->assertEqual($view->getUrl(NULL, $url), $url); // Test with arguments. - $arg1 = $this->randomString(); - $arg2 = rand(); + $arg1 = 'bar'; + $arg2 = 12345; $this->assertEqual($view->getUrl(array($arg1, $arg2), $url), "$url/$arg1/$arg2"); // Test the override_url property override. - $override_url = $this->randomString(); + $override_url = 'baz'; $view->override_url = $override_url; $this->assertEqual($view->getUrl(NULL, $url), $override_url);