Skip to content

Commit

Permalink
fix playground test broken by a8606b6
Browse files Browse the repository at this point in the history
  • Loading branch information
rhysd committed Oct 8, 2021
1 parent a8606b6 commit 763e1d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions playground/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ jobs:
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
const err = errors[0]!;
assert.equal(err.message, '"runs-on" section is missing in job "test"', `message is unexpected: ${json}`);
assert.equal(err.line, 6, `line is unexpected: ${json}`);
assert.equal(err.column, 5, `column is unexpected: ${json}`);
assert.equal(err.line, 5, `line is unexpected: ${json}`);
assert.equal(err.column, 3, `column is unexpected: ${json}`);
assert.equal(err.kind, 'syntax-check', `kind is unexpected: ${json}`);
});

Expand Down

0 comments on commit 763e1d0

Please sign in to comment.