Use .not.toEqual instead of .toNotEqual which is in a newer version of Jasmine.

This commit is contained in:
Kegan Dougal 2014-11-06 12:00:03 +00:00
parent dd8af5565b
commit c9c2e39531

View File

@ -79,6 +79,6 @@ describe("RegisterController ", function() {
scope.register();
rootScope.$digest();
expect(scope.feedback).toNotEqual(prevFeedback);
expect(scope.feedback).not.toEqual(prevFeedback);
});
});