Skip to content

Commit

Permalink
escape table name for Github typeorm#4410
Browse files Browse the repository at this point in the history
  • Loading branch information
imnotjames committed Sep 5, 2020
1 parent fa21f87 commit 32fc163
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/github-issues/4410/issue-4410.ts
Expand Up @@ -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));
Expand Down

0 comments on commit 32fc163

Please sign in to comment.