Skip to content

Commit

Permalink
inspect-test: remove $FlowFixMe (#1976)
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanGoncharov authored Jun 13, 2019
1 parent a097125 commit a0eaaa9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/jsutils/__tests__/inspect-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@ describe('inspect', () => {
it('string', () => {
expect(inspect('')).to.equal('""');
expect(inspect('abc')).to.equal('"abc"');
// $FlowFixMe
expect(inspect('"')).to.equal(String.raw`"\""`);
expect(inspect('"')).to.equal('"\\""');
});

it('number', () => {
Expand Down

0 comments on commit a0eaaa9

Please sign in to comment.