Skip to content

Commit 1211a3f

Browse files
committed
cleanup comments
1 parent 5e639f1 commit 1211a3f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/realm-server/tests/pg-test.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ module('Postgres', function (hooks) {
1515
let result = await adapter.execute(`
1616
SELECT column_name
1717
FROM information_schema.columns
18-
WHERE table_schema = 'public' -- Replace 'public' with the schema name if it's different
18+
WHERE table_schema = 'public'
1919
AND table_name = 'indexed_cards'
2020
`);
2121
let columns = result.map((r) => r.column_name);
@@ -38,7 +38,7 @@ module('Postgres', function (hooks) {
3838
let result = await adapter.execute(`
3939
SELECT column_name
4040
FROM information_schema.columns
41-
WHERE table_schema = 'public' -- Replace 'public' with the schema name if it's different
41+
WHERE table_schema = 'public'
4242
AND table_name = 'realm_versions'
4343
`);
4444
let columns = result.map((r) => r.column_name);
@@ -48,7 +48,7 @@ module('Postgres', function (hooks) {
4848
let result = await adapter.execute(`
4949
SELECT column_name
5050
FROM information_schema.columns
51-
WHERE table_schema = 'public' -- Replace 'public' with the schema name if it's different
51+
WHERE table_schema = 'public'
5252
AND table_name = 'jobs'
5353
`);
5454
let columns = result.map((r) => r.column_name);

0 commit comments

Comments
 (0)