Skip to content

Commit

Permalink
✅ fix comparison tests
Browse files Browse the repository at this point in the history
  • Loading branch information
techouse committed Apr 14, 2024
1 parent d6ad03b commit 795c85d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/comparison/qs.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ const filePath = path.join(__dirname, 'test_cases.json');
const e2eTestCases = JSON.parse(fs.readFileSync(filePath).toString());

e2eTestCases.forEach(testCase => {
console.log('Encoded: ' + qs.stringify(testCase.data));
console.log('Decoded: ' + JSON.stringify(qs.parse(testCase.encoded)));
console.log('Encoded:', qs.stringify(testCase.data));
console.log('Decoded:', JSON.stringify(qs.parse(testCase.encoded)));
});

0 comments on commit 795c85d

Please sign in to comment.