Skip to content

Commit 8377f36

Browse files
committed
Fix test.
1 parent 93d53b6 commit 8377f36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ test('Baseline double quotes', async (t) => {
2424
await waitForStreamClose(create);
2525

2626
assert.ok(fs.existsSync(path));
27-
assert.notDeepEqual(fs.readFileSync(path, "utf8"), SAMPLE_CONTENT);
27+
assert.deepEqual(fs.readFileSync(path, "utf8"), SAMPLE_CONTENT);
2828
});
2929

3030
test('Baseline single quotes', async (t) => {

0 commit comments

Comments
 (0)