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")' : ''} } ` })