Skip to content

Commit dad3f7d

Browse files
committed
💍 test: fix test
1 parent 21a125c commit dad3f7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/__tests__/RandomJson.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ test('random strings can be converted to UTF-8', () => {
124124
test('can specify string generation schema', () => {
125125
const str = RandomJson.generate({
126126
rootNode: 'string',
127-
strings: ['list', ['repeat', 2, 2, 'xx'], ['pick', ['y']]],
127+
strings: ['list', ['repeat', 2, 2, 'xx'], ['pick', 'y']],
128128
});
129129
expect(str).toBe('xxxxy');
130130
});

0 commit comments

Comments
 (0)