aboutsummaryrefslogtreecommitdiffstats
path: root/test/ng/compileSpec.js
diff options
context:
space:
mode:
authorIgor Minar2012-08-10 23:46:42 -0700
committerIgor Minar2012-08-13 12:36:42 -0700
commitab044cada685fb36c73fa3cb7004e613105e6a4c (patch)
tree6b48b49c865463942ee4c699372d832be64cc566 /test/ng/compileSpec.js
parentd010e0cc7d3cbb5f219f1b5676b082db623f0927 (diff)
downloadangular.js-ab044cada685fb36c73fa3cb7004e613105e6a4c.tar.bz2
refactor($compile): code cleanup
Diffstat (limited to 'test/ng/compileSpec.js')
-rw-r--r--test/ng/compileSpec.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/ng/compileSpec.js b/test/ng/compileSpec.js
index 31a83648..cbf84a38 100644
--- a/test/ng/compileSpec.js
+++ b/test/ng/compileSpec.js
@@ -369,7 +369,6 @@ describe('$compile', function() {
describe('template', function() {
-
beforeEach(module(function() {
directive('replace', valueFn({
restrict: 'CAM',
@@ -394,7 +393,7 @@ describe('$compile', function() {
compile: function(element, attr) {
attr.$set('compiled', 'COMPILED');
expect(element).toBe(attr.$$element);
- }
+ }
}));
}));