Skip to content

Commit

Permalink
chore: fix lint (#1348)
Browse files Browse the repository at this point in the history
  • Loading branch information
dnalborczyk committed Oct 23, 2021
1 parent 965b323 commit 96f9ae2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/response.js
Expand Up @@ -131,7 +131,7 @@ describe('Response', () => {
expect(cl.url).to.equal(base);
expect(cl.status).to.equal(346);
expect(cl.statusText).to.equal('production');
expect(cl.highWaterMark).to.equal(789)
expect(cl.highWaterMark).to.equal(789);
expect(cl.ok).to.be.false;
// Clone body shouldn't be the same body
expect(cl.body).to.not.equal(body);
Expand Down

0 comments on commit 96f9ae2

Please sign in to comment.