Skip to content

Commit 59720d0

Browse files
author
Robert Kesterson
committed
Revert prettier removal of escaping
1 parent ae438ad commit 59720d0

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

test/redisGraphAPITest.js

+6-3
Original file line numberDiff line numberDiff line change
@@ -438,9 +438,12 @@ describe("RedisGraphAPI Test", () => {
438438
["1", "2", "3"],
439439
null,
440440
'test"abc',
441-
'test"abc2',
442-
'"testabc3',
443-
'testabc4"',
441+
// prettier-ignore
442+
"test\"abc2",
443+
// prettier-ignore
444+
"\"testabc3",
445+
// prettier-ignore
446+
"testabc4\"",
444447
];
445448
let promises = [];
446449
for (var i = 0; i < params.length; i++) {

0 commit comments

Comments
 (0)