Skip to content

Commit 89af877

Browse files
Remove async.
1 parent 78d646b commit 89af877

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

api/test/api.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2406,7 +2406,7 @@ ORDER BY name
24062406
});
24072407

24082408
describe('SQL utility functions', () => {
2409-
test('quotedString', async () => {
2409+
test('quotedString', () => {
24102410
// Basic string
24112411
assert.equal(quotedString('hello'), "'hello'");
24122412

@@ -2425,7 +2425,7 @@ ORDER BY name
24252425
assert.equal(quotedString('tab\there'), "'tab\there'");
24262426
});
24272427

2428-
test('quotedIdentifier', async () => {
2428+
test('quotedIdentifier', () => {
24292429
// Basic identifier
24302430
assert.equal(quotedIdentifier('table_name'), '"table_name"');
24312431

0 commit comments

Comments
 (0)