Skip to content

Commit

Permalink
Merge pull request #38 from Kesin11/fix_test
Browse files Browse the repository at this point in the history
Fix test that incompatible Linter v2
  • Loading branch information
1000ch authored Oct 9, 2017
2 parents 7025e95 + 7434745 commit 4d8a78f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/linter-textlint-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ describe('The textlint provider for Linter', () => {
atom.workspace.open(markdown)
.then(editor => lint(editor))
.then((messages) => {
expect(messages[0].severity).toEqual('Error');
expect(messages[0].severity).toEqual('error');
expect(messages[0].excerpt).toEqual('HTML Import => HTML Imports');
expect(messages[0].location.file).toMatch(/.+bad\.md$/);
expect(messages[0].location.position).toEqual([
Expand Down

0 comments on commit 4d8a78f

Please sign in to comment.