Skip to content

Commit

Permalink
Fix size 0 test for IE9.
Browse files Browse the repository at this point in the history
  • Loading branch information
RubenVerborgh committed Dec 3, 2013
1 parent 61ef416 commit 5505011
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/N3Store-test.js
@@ -1,5 +1,6 @@
var N3Store = require('../N3').Store;
var chai = require('chai');
var chai = require('chai'),
expect = chai.expect;
chai.should();
chai.use(require('chai-things'));

Expand All @@ -22,7 +23,7 @@ describe('N3Store', function () {
var n3Store = new N3Store();

it('should have size 0', function () {
n3Store.size.should.eql(0);
expect(n3Store.size).to.eql(0); // special test format for IE9
});

it('should be empty', function () {
Expand Down

0 comments on commit 5505011

Please sign in to comment.