Skip to content

Commit

Permalink
touchstone: fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
QuentinRoy committed Dec 8, 2023
1 parent 2f0944b commit a0d3103
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ describe('convert', () => {

it('fails if it is provided with an empty string', async () => {
await expect(() => convert('')).rejects.toThrowErrorMatchingInlineSnapshot(
'"No experiment tag found"',
`[Error: No experiment tag found]`,
);
});

Expand All @@ -135,6 +135,6 @@ describe('convert', () => {

await expect(() =>
convert(noOpReadable),
).rejects.toThrowErrorMatchingInlineSnapshot('"No experiment tag found"');
).rejects.toThrowErrorMatchingInlineSnapshot(`[Error: No experiment tag found]`);
});
});

0 comments on commit a0d3103

Please sign in to comment.