From 085b2c163d6bf6ee658900d11d52f1f36204278e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joe=CC=88l=20Galeran?= Date: Tue, 4 Oct 2022 10:22:44 +0200 Subject: [PATCH] test(client): multiSchema, test same table name Related https://github.com/prisma/prisma/issues/15009 --- .../client/tests/functional/multi-schema/prisma/_schema.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/client/tests/functional/multi-schema/prisma/_schema.ts b/packages/client/tests/functional/multi-schema/prisma/_schema.ts index 1a3e248015c1..fe061771d40a 100644 --- a/packages/client/tests/functional/multi-schema/prisma/_schema.ts +++ b/packages/client/tests/functional/multi-schema/prisma/_schema.ts @@ -20,7 +20,7 @@ export default testMatrix.setupSchema(({ provider, mapTable }) => { posts Post[] @@schema("base") - ${mapTable ? '@@map("some_table-1")' : ''} + ${mapTable ? '@@map("some_table")' : ''} } model Post { @@ -30,7 +30,7 @@ export default testMatrix.setupSchema(({ provider, mapTable }) => { author User? @relation(fields: [authorId], references: [id]) @@schema("transactional") - ${mapTable ? '@@map("some_table-2")' : ''} + ${mapTable ? '@@map("some_table")' : ''} } ` })