Browse Source

Fixed a style error.

Joshua Lückers 8 years ago
parent
commit
86d2cf72e1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/TestCase/View/Helper/UrlHelperTest.php

+ 1 - 1
tests/TestCase/View/Helper/UrlHelperTest.php

@@ -338,7 +338,7 @@ class UrlHelperTest extends TestCase
         $timestamp = false;
 
         $result = $this->Helper->script('script.js', ['timestamp' => $timestamp]);
-        $this->assertEquals(Configure::read('App.jsBaseUrl').'script.js', $result);
+        $this->assertEquals(Configure::read('App.jsBaseUrl') . 'script.js', $result);
     }
 
     /**