aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/AngularSpec.js2
-rw-r--r--test/directivesSpec.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/AngularSpec.js b/test/AngularSpec.js
index 725e8ea0..1ccdf1c3 100644
--- a/test/AngularSpec.js
+++ b/test/AngularSpec.js
@@ -92,4 +92,4 @@ describe('parseKeyValue', function() {
expect(parseKeyValue('flag1&key=value&flag2')).
toEqual({flag1: true, key: 'value', flag2: true});
});
-})
+});
diff --git a/test/directivesSpec.js b/test/directivesSpec.js
index 72f7b2f2..10400ead 100644
--- a/test/directivesSpec.js
+++ b/test/directivesSpec.js
@@ -181,7 +181,7 @@ describe("directives", function(){
innerDiv.trigger('click');
expect(scope.$get('outer')).not.toBeDefined();
expect(scope.$get('inner')).toEqual(true);
- })
+ });
});
it('should ng:class', function(){