Skip to content

Commit 310203d

Browse files
committed
Whitespace adjustments in JSON Relational Duality and Fetch Type Handler Tests
1 parent 8e43b9c commit 310203d

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

test/fetchTypeHandler.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -467,13 +467,13 @@ describe('271. fetchTypeHandler.js', function() {
467467

468468
await connection.execute(`INSERT INTO ${TABLE} values (01, 'ABC', 23,
469469
TO_TIMESTAMP('2023-04-27 10:30:00', 'YYYY-MM-DD HH24:MI:SS'))`);
470-
const result = await connection.execute(`
471-
SELECT id, name, age,
472-
created_date AS TS_DATE FROM ${TABLE}`,
473-
[],
474-
{
475-
outFormat: oracledb.OUT_FORMAT_OBJECT
476-
}
470+
const result = await connection.execute(
471+
`SELECT id, name, age,
472+
created_date AS TS_DATE FROM ${TABLE}`,
473+
[],
474+
{
475+
outFormat: oracledb.OUT_FORMAT_OBJECT
476+
}
477477
);
478478

479479
assert.deepEqual(Object.getOwnPropertyNames(result.rows[0]), ["ID", "NAME", "AGE", "TS_DATE"]);

0 commit comments

Comments
 (0)