From 3823b394b0286bc53a81006c98d3c52206d5a3b9 Mon Sep 17 00:00:00 2001 From: Joe Fiorini Date: Fri, 27 Mar 2015 17:12:34 -0400 Subject: [PATCH] Fix bad parameters in rest stub --- awx/ui/tests/unit/rest-stub.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/awx/ui/tests/unit/rest-stub.js b/awx/ui/tests/unit/rest-stub.js index e73c3b735b..9efa7c5ce4 100644 --- a/awx/ui/tests/unit/rest-stub.js +++ b/awx/ui/tests/unit/rest-stub.js @@ -62,8 +62,8 @@ RestStub.prototype = window.setTimeout(function() { inject(['$rootScope', function($rootScope) { $rootScope.$apply(); - }], 1000); - }); + }]); + }, 1000); } };