Skip to content

Commit

Permalink
fix: deepEqual -> is
Browse files Browse the repository at this point in the history
  • Loading branch information
alstn2468 committed Jan 17, 2024
1 parent 33699db commit ffda3e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -277,8 +277,8 @@ test('.json() with invalid JSON body and accept starts with text', async t => {
const responseJson = await ky.get(server.url).json();
const responseText = await ky.get(server.url).text();

t.deepEqual(responseJson, 'not json');
t.deepEqual(responseText, 'not json');
t.is(responseJson, 'not json');
t.is(responseText, 'not json');

await server.close();
});
Expand Down

0 comments on commit ffda3e5

Please sign in to comment.