Skip to content
This repository has been archived by the owner on Mar 27, 2019. It is now read-only.

Commit

Permalink
fix typo in assertion messages
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Feb 24, 2013
1 parent c6c64f1 commit 7608fa7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/install.js
Expand Up @@ -93,7 +93,7 @@ describe('component install', function(){
json.name.should.equal('tip');
var json = require(path.resolve('components/component-popover/component.json'));
json.name.should.equal('popover');
assert(!exists('components/component-inherit'), 'dev deps should be installed');
assert(!exists('components/component-inherit'), 'dev deps should not be installed');
done();
})
})
Expand All @@ -110,7 +110,7 @@ describe('component install', function(){
json.name.should.equal('tip');
var json = require(path.resolve('components/component-popover/component.json'));
json.name.should.equal('popover');
assert(exists('components/component-inherit'), 'dev deps should not be installed');
assert(exists('components/component-inherit'), 'dev deps should be installed');
done();
})
})
Expand Down

0 comments on commit 7608fa7

Please sign in to comment.