Merge pull request #18706 from civicrm/5.30
[civicrm-core.git] / tests / karma / unit / crmMailingSpec.js
index 8d35904988b0d3343a3c0f1a7d7f28630846ccb1..bd74476213ac791d030228af255226f202ed78cb 100644 (file)
@@ -14,10 +14,10 @@ describe('crmMailing', function() {
     beforeEach(function() {
       navigator = jasmine.createSpyObj('crmNavigator', ['redirect']);
       module(function ($provide) {
-        $provide.value('crmNavigator', navigator) 
+        $provide.value('crmNavigator', navigator);
       });
       inject(['crmLegacy', function(crmLegacy) {
-        crmLegacy.url({back: '/*path*?*query*', front: '/*path*?*query*'});
+        crmLegacy.url({back: '/civicrm-placeholder-url-path?civicrm-placeholder-url-query=1', front: '/civicrm-placeholder-url-path?civicrm-placeholder-url-query=1'});
       }]);
       inject(['$controller', function($controller) {
         ctrl = $controller('ListMailingsCtrl', {});