Skip to content
This repository was archived by the owner on Sep 5, 2024. It is now read-only.

Commit 295141e

Browse files
authored
Updates
1 parent be6d617 commit 295141e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/core/services/compiler/compiler.spec.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ describe('$mdCompiler service', function() {
1515
function setPreAssignBindings(preAssignBindingsEnabled) {
1616
module(function($compileProvider) {
1717
$compileProvider.preAssignBindingsEnabled(preAssignBindingsEnabled);
18-
})
18+
});
1919
}
2020

2121

@@ -182,7 +182,7 @@ describe('$mdCompiler service', function() {
182182
return data;
183183
}
184184

185-
it('enabled should assigns bindings at instantiation', function() {
185+
it('enabled should assign bindings at instantiation', function() {
186186
setPreAssignBindings(true);
187187

188188
var isInstantiated = false;
@@ -204,7 +204,7 @@ describe('$mdCompiler service', function() {
204204
expect(isInstantiated).toBe(true);
205205
});
206206

207-
it('disabled should assigns bindings after constructor', function() {
207+
it('disabled should assign bindings after constructor', function() {
208208
setPreAssignBindings(false);
209209

210210
var isInstantiated = false;

0 commit comments

Comments
 (0)