Skip to content

Commit ca2582c

Browse files
committed
[misc] test correction: fix table name in INSERT statement
1 parent ca5f941 commit ca2582c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/integration/datatype/json.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ describe.concurrent('json', () => {
192192
await conn.query('CREATE TABLE `test-json-return-type2` (val1 JSON, val2 LONGTEXT, val3 LONGBLOB)');
193193
await conn.beginTransaction();
194194
await conn.query(
195-
"INSERT INTO `test-json-return-type` values ('" + jsonString + "','" + jsonString + "','" + jsonString + "')"
195+
"INSERT INTO `test-json-return-type2` values ('" + jsonString + "','" + jsonString + "','" + jsonString + "')"
196196
);
197197

198198
let rows = await conn.query('SELECT * FROM `test-json-return-type2`');

0 commit comments

Comments
 (0)