aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/Runner.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/Runner.js')
-rw-r--r--src/test/Runner.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/Runner.js b/src/test/Runner.js
index 5840282e..c6684951 100644
--- a/src/test/Runner.js
+++ b/src/test/Runner.js
@@ -110,7 +110,7 @@ test.Scenario.prototype = {
},
verb:function(step){
var fn = null;
- if (!step) fn = function (){ throw "Step is null!"; }
+ if (!step) fn = function (){ throw "Step is null!"; };
else if (step.Given) fn = angular.test.GIVEN[step.Given];
else if (step.When) fn = angular.test.WHEN[step.When];
else if (step.Then) fn = angular.test.THEN[step.Then];