We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d01c323 commit 213cd6bCopy full SHA for 213cd6b
test/unit/test-SqlString.js
@@ -48,7 +48,7 @@ test('SqlString.escapeId', {
48
},
49
50
'instances of Escaped are not quoted': function() {
51
- assert.equal(SqlString.escapeId(SqlString.escaped('@a := 42')), "@a := 42");
+ assert.equal(SqlString.escapeId(SqlString.escaped('@a := 42')), '@a := 42');
52
}
53
});
54
@@ -123,7 +123,7 @@ test('SqlString.escape', {
123
124
125
'instances of Escaped get not escaped': function() {
126
- assert.equal(SqlString.escape({a: SqlString.escaped('@a')}), "`a` = @a");
+ assert.equal(SqlString.escape({a: SqlString.escaped('@a')}), '`a` = @a');
127
128
129
'\0 gets escaped': function() {
0 commit comments