Skip to content

Commit c3816f1

Browse files
committed
Minor tweaks to test descriptions
1 parent 1791e85 commit c3816f1

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

test/ddl/function.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ describe("function", () => {
240240
`);
241241
});
242242

243-
it(`converts single-quoted SQL functions to dollar-quoted SQL functions`, async () => {
243+
it(`converts single-quoted SQL function to dollar-quoted SQL function`, async () => {
244244
expect(
245245
await pretty(
246246
dedent`
@@ -261,7 +261,7 @@ describe("function", () => {
261261
`);
262262
});
263263

264-
it(`does not convert single-quoted SQL functions to dollar-quoted SQL functions when they contain dollar-quoted strings`, async () => {
264+
it(`does not reformat single-quoted SQL function when its source contains $$-quotes`, async () => {
265265
expect(
266266
await pretty(
267267
dedent`

test/ddl/procedure.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ describe("procedure", () => {
144144
`);
145145
});
146146

147-
it(`does not convert single-quoted SQL procedures to dollar-quoted SQL procedures when they contain dollar-quoted strings`, async () => {
147+
it(`does not reformat single-quoted SQL procedure when its source contains $$-quotes`, async () => {
148148
expect(
149149
await pretty(
150150
dedent`

0 commit comments

Comments
 (0)