Skip to content

Commit

Permalink
Merge pull request #66 from samtsai/fix-test-descriptions
Browse files Browse the repository at this point in the history
Fix grammatical issue with test description
  • Loading branch information
stefanpenner committed Mar 17, 2017
2 parents d48cb54 + 193060c commit ccd0125
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/unit/dependency-checker-bower-test.js
Expand Up @@ -57,7 +57,7 @@ describe('EmberCLIDependencyChecker', function() {
});
});

describe('does not report unsatisfied Bower dependencies', function() {
describe('does not report satisfied Bower dependencies', function() {
it('when the installed package matches the version specified', function() {
var project = createProject({ 'ember': '1.7.0' });
assertNoBowerError(project);
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/dependency-checker-npm-test.js
Expand Up @@ -52,7 +52,7 @@ describe('EmberCLIDependencyChecker', function() {
});
});

describe('does not report unsatisfied NPM dependencies', function() {
describe('does not report satisfied NPM dependencies', function() {
it('when the installed package matches the version specified', function() {
var project = createProject({ 'ember-cli': '1.2.3' });
assertNoNpmError(project);
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/dependency-checker-shrinkwrap-test.js
Expand Up @@ -76,7 +76,7 @@ describe('EmberCLIDependencyChecker : Shrinkwrap', function() {
});
});

describe('does not report unsatisfied npm-shrinkwrap dependencies', function() {
describe('does not report satisfied npm-shrinkwrap dependencies', function() {
it('when top-level deps and nested deps are satisfied', function() {
var project = createProject({
'mkdirp': '0.5.0'
Expand Down

0 comments on commit ccd0125

Please sign in to comment.