Skip to content

Commit

Permalink
Fix test on null value
Browse files Browse the repository at this point in the history
  • Loading branch information
sequitur committed Jan 25, 2016
1 parent 83b200a commit 85cf79c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
Expand Up @@ -2,5 +2,3 @@ language: node_js
node_js:
- v5
- v4
- '0.12'
- '0.10'
4 changes: 2 additions & 2 deletions test/filters.js
@@ -1,4 +1,4 @@
import 'should';
import should from 'should';
import filters from '../lib/filters.js';

describe('filters', function () {
Expand All @@ -18,7 +18,7 @@ describe('filters', function () {
['economy']
]
};
(filters.mismatchFilter(mismatchingGroup, model)).should.be.null();
should(filters.mismatchFilter(mismatchingGroup, model)).be.null();
});

it('returns 0 when there is a complete match', function () {
Expand Down

0 comments on commit 85cf79c

Please sign in to comment.