Skip to content

Commit

Permalink
assert.equal -> should.equal
Browse files Browse the repository at this point in the history
  • Loading branch information
lharding authored and callumacrae committed Mar 24, 2015
1 parent ae57d52 commit 26b762d
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions test/a-src.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ var vfsFake = require('../');
var path = require('path');
var File = require('vinyl');
var should = require('should');
var assert = require('assert');
var through = require('through2');

var fakeContent = 'hello world';
Expand Down Expand Up @@ -80,8 +79,7 @@ describe('src', function () {
.pipe(through.obj(function (file) {
file.path.should.equal(fakePath);

// can't use .should.equal on null!
assert.equal(file.contents, null);
should.equal(file.contents, null);
file.base.should.equal(process.cwd());
file.cwd.should.equal(process.cwd());
done();
Expand Down

0 comments on commit 26b762d

Please sign in to comment.