Fix tests.

This commit is contained in:
André Cruz
2013-06-22 14:15:35 +01:00
parent 83ae9b66a3
commit b80d96d9c7

View File

@@ -25,7 +25,7 @@ describe('.find', function () {
bowerJson.find(__dirname, function (err) {
expect(err).to.be.an(Error);
expect(err.code).to.equal('ENOENT');
expect(err.message).to.equal('Neither bower.json nor component.json were found in "' + __dirname + '"');
expect(err.message).to.equal('Neither bower.json nor component.json were found in ' + __dirname);
done();
});
});