Skip to content

Commit

Permalink
Fix: Tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sarvaje committed Mar 6, 2019
1 parent 3166ba0 commit 523a11b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/hint/tests/lib/types/html.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ test('HTMLElement.getLocation() should return the element location', (t) => {
const item = t.context.document.querySelectorAll('.title')[0];
const location = item.getLocation();

t.is(location.line, 4);
t.is(location.column, 9);
t.is(location.line, 3);
t.is(location.column, 8);
});

test('HTMLElement.isSame() should return if an item is the same or not', (t) => {
Expand Down

0 comments on commit 523a11b

Please sign in to comment.