Skip to content

Commit 911c975

Browse files
committed
Make test consistent with the existing one
1 parent 451b8c6 commit 911c975

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/postgresql.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ describe('PostgreSqlFormatter', () => {
267267
expect(
268268
format(`
269269
SELECT * FROM tbl FOR UPDATE;
270-
SELECT * FROM tbl FOR UPDATE OF tbl.a;
270+
SELECT * FROM tbl FOR UPDATE OF tbl.salary;
271271
`)
272272
).toBe(dedent`
273273
SELECT
@@ -281,7 +281,7 @@ describe('PostgreSqlFormatter', () => {
281281
FROM
282282
tbl
283283
FOR UPDATE OF
284-
tbl.a;
284+
tbl.salary;
285285
`);
286286
});
287287
});

0 commit comments

Comments
 (0)