Skip to content

Commit

Permalink
Fix specs
Browse files Browse the repository at this point in the history
  • Loading branch information
Valentin Vasilyev committed Nov 24, 2015
1 parent 65a6f35 commit 382fbed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions specs/specs.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ describe("Fingerprint2", function () {

it("does not use plugins info when excluded", function (done) {
var fp2 = new Fingerprint2({excludePlugins: true});
spyOn(fp2, "getRegularPluginsString");
spyOn(fp2, "getRegularPlugins");
fp2.get(function(result) {
expect(fp2.getRegularPluginsString).not.toHaveBeenCalled();
expect(fp2.getRegularPlugins).not.toHaveBeenCalled();
done();
});
});
Expand Down

0 comments on commit 382fbed

Please sign in to comment.