Skip to content

Commit

Permalink
adjust tests
Browse files Browse the repository at this point in the history
  • Loading branch information
oli-obk committed Mar 31, 2016
1 parent 3845494 commit 770f3dd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions spec/linter-intergration-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,13 @@ describe('Linter Integration', () => {
const linter = dummyPackage.getLinter();
expect(linter.messages).toEqual([
{
filePath: '.atom-build.json',
filePath: `${directory}/.atom-build.json`,
range: [ [2, 7], [2, 7] ],
text: 'Error from build',
type: 'Error'
},
{
filePath: '.atom-build.json',
filePath: `${directory}/.atom-build.json`,
range: [ [1, 4], [1, 4] ],
text: 'Error from build',
type: 'Error'
Expand All @@ -93,7 +93,7 @@ describe('Linter Integration', () => {
const linter = dummyPackage.getLinter();
expect(linter.messages).toEqual([
{
filePath: '.atom-build.json',
filePath: `${directory}/.atom-build.json`,
range: [ [2, 7], [2, 7] ],
text: 'very bad things',
type: 'Error'
Expand All @@ -119,7 +119,7 @@ describe('Linter Integration', () => {
const linter = dummyPackage.getLinter();
expect(linter.messages).toEqual([
{
filePath: '.atom-build.json',
filePath: `${directory}/.atom-build.json`,
range: [ [2, 7], [2, 7] ],
text: 'very bad things',
type: 'Error'
Expand Down

0 comments on commit 770f3dd

Please sign in to comment.