Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jridgewell committed Oct 7, 2022
1 parent 8fe0daa commit 1944f1e
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions test/trace-mapping.test.ts
Expand Up @@ -350,10 +350,9 @@ describe('TraceMap', () => {
[{ line: 1, column: 18 }],
);

t.deepEqual(
allGeneratedPositionsFor(tracer, { source: 'input.js', line: 1, column: 10 }),
[{ line: 1, column: 9 }],
);
t.deepEqual(allGeneratedPositionsFor(tracer, { source: 'input.js', line: 1, column: 10 }), [
{ line: 1, column: 9 },
]);
});
};
}
Expand Down

0 comments on commit 1944f1e

Please sign in to comment.