Fixed jslint error

This commit is contained in:
Henry 2015-11-17 15:03:17 -08:00
parent 3a36389815
commit 40b21e35fd

View File

@ -103,7 +103,7 @@ define(
it("provides a fresh initial model each time", function () {
var model = type.getInitialModel();
model.someKey = "some other value"
model.someKey = "some other value";
expect(type.getInitialModel().someKey).toEqual("some value");
});