From f0d80bd7a257db0b06926907bcea7199072fcc71 Mon Sep 17 00:00:00 2001 From: Andrii Chebukin Date: Tue, 5 Nov 2024 00:32:20 +0400 Subject: [PATCH] fixup! Included and fixed `FSharp.Data.GraphQL.Tests.Sql` --- .../PropertyTrackerTests.fs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/FSharp.Data.GraphQL.Tests/PropertyTrackerTests.fs b/tests/FSharp.Data.GraphQL.Tests/PropertyTrackerTests.fs index 46f48f0b2..eb29042ba 100644 --- a/tests/FSharp.Data.GraphQL.Tests/PropertyTrackerTests.fs +++ b/tests/FSharp.Data.GraphQL.Tests/PropertyTrackerTests.fs @@ -128,10 +128,10 @@ let ``Property tracker can track indirect properties`` () = let expected = Compose ( track null typeof typeof, - [], + Set.empty, Set.ofList [ - Tracker.Direct (track "FirstName" typeof typeof, []) - Tracker.Direct (track "LastName" typeof typeof, []) + Tracker.Direct (track "FirstName" typeof typeof, Set.empty) + Tracker.Direct (track "LastName" typeof typeof, Set.empty) ] ) let actual = tracker ImmutableDictionary.Empty info @@ -161,7 +161,7 @@ let ``Property tracker can correctly jump over properties not being part of the let expected = Compose ( { Name = None; ParentType = typeof; ReturnType = typeof }, - [], + Set.empty, set [ Direct ( { @@ -169,9 +169,9 @@ let ``Property tracker can correctly jump over properties not being part of the ParentType = typeof ReturnType = typeof }, - [] + Set.empty ) - Direct ({ Name = Some "Id"; ParentType = typeof; ReturnType = typeof }, []) + Direct ({ Name = Some "Id"; ParentType = typeof; ReturnType = typeof }, Set.empty) ] )