Skip to content
This repository has been archived by the owner on Aug 7, 2023. It is now read-only.

Commit

Permalink
Merge pull request #95 from Arcanemagus/fix-specs
Browse files Browse the repository at this point in the history
Update atom-linter and fix specs
  • Loading branch information
Arcanemagus committed Nov 28, 2015
2 parents 54e2f1e + edb21b6 commit 14b32cb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@
}
},
"dependencies": {
"atom-linter": "^3.3.7",
"atom-linter": "^3.3.9",
"atom-package-deps": "^3.0.5",
"lodash": "^3.10.1"
},
"devDependencies": {
"coffeelint": "^1.14.1",
"eslint": "^1.9.0",
"babel-eslint": "^4.1.5",
"eslint": "^1.10.2",
"babel-eslint": "^4.1.6",
"eslint-config-airbnb": "latest"
},
"package-deps": [
Expand Down
2 changes: 1 addition & 1 deletion spec/linter-pylint-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ describe('The pylint provider for Linter', () => {
expect(messages[0].filePath).toMatch(/.+spec[\\\/]files[\\\/]bad\.py$/);
expect(messages[0].range).toBeDefined();
expect(messages[0].range.length).toEqual(2);
expect(messages[0].range).toEqual([[0, 0], [0, 3]]);
expect(messages[0].range).toEqual([[0, 0], [0, 4]]);
});
});
});
Expand Down

0 comments on commit 14b32cb

Please sign in to comment.