Skip to content

Commit bd30872

Browse files
authoredMar 26, 2024··
ci: fix test file name (#2530)
* ci: fix test file name * ci: fix lint
1 parent 0d54b0c commit bd30872

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
 

‎test/unit/parsers/cache-key-serialization.js ‎test/unit/parsers/cache-key-serialization.test.cjs

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict';
22

3-
const assert = require('assert');
3+
const { assert } = require('poku');
44
const _keyFromFields =
55
require('../../../lib/parsers/parser_cache.js')._keyFromFields;
66

@@ -461,7 +461,8 @@ assert(
461461
const stringify = JSON.stringify;
462462

463463
// Overwriting the native `JSON.stringify`
464-
JSON.stringify = (value, replacer, space = 8) => stringify(value, replacer, space);
464+
JSON.stringify = (value, replacer, space = 8) =>
465+
stringify(value, replacer, space);
465466

466467
// Testing twice all existent tests needs to return 7 keys, since two of them expects to be the same
467468
assert(

0 commit comments

Comments
 (0)
Please sign in to comment.