Skip to content

Commit

Permalink
ci: fix test file name (#2530)
Browse files Browse the repository at this point in the history
* ci: fix test file name

* ci: fix lint
  • Loading branch information
wellwelwel committed Mar 26, 2024
1 parent 0d54b0c commit bd30872
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';

const assert = require('assert');
const { assert } = require('poku');
const _keyFromFields =
require('../../../lib/parsers/parser_cache.js')._keyFromFields;

Expand Down Expand Up @@ -461,7 +461,8 @@ assert(
const stringify = JSON.stringify;

// Overwriting the native `JSON.stringify`
JSON.stringify = (value, replacer, space = 8) => stringify(value, replacer, space);
JSON.stringify = (value, replacer, space = 8) =>
stringify(value, replacer, space);

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

0 comments on commit bd30872

Please sign in to comment.