Skip to content

Commit 10c8c5c

Browse files
committed
test: style updates for assert.snapshot()
This commit updates the assert.snapshot() fixtures to better match the code style of the rest of the codebase.
1 parent 9bc08e3 commit 10c8c5c

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
import assert from 'node:assert';
22

3-
await assert.snapshot("test", "name");
3+
await assert.snapshot('test', 'name');
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
import assert from 'node:assert';
22

3-
await assert.snapshot("test", "name");
4-
await assert.snapshot("test", "another name");
3+
await assert.snapshot('test', 'name');
4+
await assert.snapshot('test', 'another name');
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
import assert from 'node:assert';
22

3-
await assert.snapshot("test", "another name");
4-
await assert.snapshot("test", "non existing");
3+
await assert.snapshot('test', 'another name');
4+
await assert.snapshot('test', 'non existing');
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
import assert from 'node:assert';
22

3-
await assert.snapshot("test", "snapshot");
3+
await assert.snapshot('test', 'snapshot');
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
import assert from 'node:assert';
22

3-
await assert.snapshot("changed", "snapshot");
3+
await assert.snapshot('changed', 'snapshot');

0 commit comments

Comments
Β (0)