From ade0fa7fe3f42c8bceb93a4164130554cb78673e Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Fri, 1 Sep 2017 19:13:39 +0100 Subject: [PATCH] correct spelling mistake --- test/unit/directive.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/directive.js b/test/unit/directive.js index 36f210d..52439ff 100644 --- a/test/unit/directive.js +++ b/test/unit/directive.js @@ -189,7 +189,7 @@ describe("Directive", function () { assert.equal(el.text(), "Hello"); }); - it("Changing language should translate again not loosing scope", function () { + it("Changing language should translate again not losing scope", function () { catalog.setCurrentLanguage("nl"); $rootScope.providedName = "Ruben"; var el = $compile("
Hello {{name}}!
")($rootScope);