aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/widgetsSpec.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/widgetsSpec.js b/test/widgetsSpec.js
index 53766274..4cad31ad 100644
--- a/test/widgetsSpec.js
+++ b/test/widgetsSpec.js
@@ -7,7 +7,7 @@ describe('widget', function() {
dealoc(element);
});
- describe('ng:switch', inject(function($rootScope, $compile) {
+ describe('ng:switch', function() {
it('should switch on value change', inject(function($rootScope, $compile) {
element = $compile(
'<ng:switch on="select">' +
@@ -58,7 +58,7 @@ describe('widget', function() {
expect($rootScope.name).toEqual(undefined);
expect(element.text()).toEqual('works');
}));
- }));
+ });
describe('ng:include', function() {