diff --git a/test/EFCore.PG.FunctionalTests/Query/PrimitiveCollectionsQueryNpgsqlTest.cs b/test/EFCore.PG.FunctionalTests/Query/PrimitiveCollectionsQueryNpgsqlTest.cs index 91f9d4e29..fff5a85fc 100644 --- a/test/EFCore.PG.FunctionalTests/Query/PrimitiveCollectionsQueryNpgsqlTest.cs +++ b/test/EFCore.PG.FunctionalTests/Query/PrimitiveCollectionsQueryNpgsqlTest.cs @@ -1432,11 +1432,11 @@ public override async Task Parameter_collection_Concat_column_collection(bool as AssertSql( """ -@__ints_0={ '11', '111' } (DbType = Object) +@__p_0={ '11', '111' } (DbType = Object) SELECT p."Id", p."Bool", p."Bools", p."DateTime", p."DateTimes", p."Enum", p."Enums", p."Int", p."Ints", p."NullableInt", p."NullableInts", p."NullableString", p."NullableStrings", p."String", p."Strings" FROM "PrimitiveCollectionsEntity" AS p -WHERE cardinality(@__ints_0 || p."Ints") = 2 +WHERE cardinality(@__p_0 || p."Ints") = 2 """); }