Skip to content

Commit

Permalink
[misc] MySQL test correction
Browse files Browse the repository at this point in the history
  • Loading branch information
rusher committed Oct 13, 2024
1 parent d089e89 commit 24a5824
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/integration/datatype/test-json.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ describe('json', () => {
await testJsonInsertFormat(con2, true, true);
await con2.end();

const con3 = await base.createConnection({ charset: 'latin7', autoJsonMap: false });
const con3 = await base.createConnection({ charset: 'latin7', jsonStrings: true, autoJsonMap: false });
await testJsonInsertFormat(con3, true, false);
await con3.end();
});
Expand Down

0 comments on commit 24a5824

Please sign in to comment.