From 32fc163c2db8eac93e3097a5a8e2522f16b55d38 Mon Sep 17 00:00:00 2001 From: James Ward Date: Fri, 4 Sep 2020 21:06:33 -0400 Subject: [PATCH] escape table name for Github #4410 --- test/github-issues/4410/issue-4410.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/github-issues/4410/issue-4410.ts b/test/github-issues/4410/issue-4410.ts index 86ff3de1d73..f9b6544a325 100644 --- a/test/github-issues/4410/issue-4410.ts +++ b/test/github-issues/4410/issue-4410.ts @@ -14,7 +14,7 @@ describe("github issues > #4410 allow custom filepath for FileLogger", () => { schemaCreate: true, dropSchema: true, }; - const testQuery = "SELECT COUNT(*) from username;"; + const testQuery = `SELECT COUNT(*) from "username";`; before(() => stub = sinon.stub(PlatformTools, "appendFileSync")); beforeEach(() => reloadTestingDatabases(connections));