Skip to content

Commit 2c210a1

Browse files
committed
tests: fix some object spacing
1 parent 0c89dc1 commit 2c210a1

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

test/unit/test-SqlString.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,11 @@ test('SqlString.escapeId', {
1818
'value containing separator is quoted': function() {
1919
assert.equal('`id1`.`id2`', SqlString.escapeId('id1.id2'));
2020
},
21+
2122
'value containing separator and escapes is quoted': function() {
2223
assert.equal('`id``1`.`i``d2`', SqlString.escapeId('id`1.i`d2'));
2324
},
25+
2426
'value containing separator is fully escaped when forbidQualified': function() {
2527
assert.equal('`id1.id2`', SqlString.escapeId('id1.id2', true));
2628
},

0 commit comments

Comments
 (0)