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

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
devversion authored Mar 9, 2017
1 parent be6d617 commit 295141e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/core/services/compiler/compiler.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ describe('$mdCompiler service', function() {
function setPreAssignBindings(preAssignBindingsEnabled) {
module(function($compileProvider) {
$compileProvider.preAssignBindingsEnabled(preAssignBindingsEnabled);
})
});
}


Expand Down Expand Up @@ -182,7 +182,7 @@ describe('$mdCompiler service', function() {
return data;
}

it('enabled should assigns bindings at instantiation', function() {
it('enabled should assign bindings at instantiation', function() {
setPreAssignBindings(true);

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

it('disabled should assigns bindings after constructor', function() {
it('disabled should assign bindings after constructor', function() {
setPreAssignBindings(false);

var isInstantiated = false;
Expand Down

0 comments on commit 295141e

Please sign in to comment.