From ed91a7b2497b937965f670a81b14ad3b5b2318cc Mon Sep 17 00:00:00 2001 From: ItzSiL3Nce Date: Tue, 8 Aug 2023 10:28:17 +0200 Subject: [PATCH] psl: fix an old unit test that now fails cause it doesn't expect the existence of the new 'prismaSkipIntegrity' relation mode --- psl/psl/tests/attributes/relations/referential_actions.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/psl/psl/tests/attributes/relations/referential_actions.rs b/psl/psl/tests/attributes/relations/referential_actions.rs index 339315ee3861..dbc23408cb63 100644 --- a/psl/psl/tests/attributes/relations/referential_actions.rs +++ b/psl/psl/tests/attributes/relations/referential_actions.rs @@ -380,7 +380,7 @@ fn foreign_keys_not_allowed_on_mongo() { "#}; let expected = expect![[r#" - error: Error validating datasource `relationMode`: Invalid relation mode setting: "foreignKeys". Supported values: "prisma" + error: Error validating datasource `relationMode`: Invalid relation mode setting: "foreignKeys". Supported values: "prisma", "prismaSkipIntegrity" --> schema.prisma:3  |   2 |  provider = "mongodb"