Skip to content

Commit 99af7cd

Browse files
committed
whoops
1 parent ac110c0 commit 99af7cd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/db-utils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,9 +131,9 @@ export async function cleanupDb(prisma: PrismaClient) {
131131
.readFileSync(path)
132132
.toString()
133133
.split(';')
134-
.map(statement => statement.trim())
134+
.map((statement) => statement.trim())
135135
.filter(Boolean)
136-
.map((statement) => `${statement};`))
136+
.map((statement) => `${statement};`)
137137

138138
return sql
139139
})

0 commit comments

Comments
 (0)