Skip to content

Commit 213cd6b

Browse files
authored
Update test-SqlString.js
1 parent d01c323 commit 213cd6b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/unit/test-SqlString.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ test('SqlString.escapeId', {
4848
},
4949

5050
'instances of Escaped are not quoted': function() {
51-
assert.equal(SqlString.escapeId(SqlString.escaped('@a := 42')), "@a := 42");
51+
assert.equal(SqlString.escapeId(SqlString.escaped('@a := 42')), '@a := 42');
5252
}
5353
});
5454

@@ -123,7 +123,7 @@ test('SqlString.escape', {
123123
},
124124

125125
'instances of Escaped get not escaped': function() {
126-
assert.equal(SqlString.escape({a: SqlString.escaped('@a')}), "`a` = @a");
126+
assert.equal(SqlString.escape({a: SqlString.escaped('@a')}), '`a` = @a');
127127
},
128128

129129
'\0 gets escaped': function() {

0 commit comments

Comments
 (0)