Skip to content

Commit 855941f

Browse files
committed
fixup! Included and fixed FSharp.Data.GraphQL.Tests.Sql
1 parent 929df7c commit 855941f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tests/FSharp.Data.GraphQL.Tests/PropertyTrackerTests.fs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -128,10 +128,10 @@ let ``Property tracker can track indirect properties`` () =
128128
let expected =
129129
Compose (
130130
track null typeof<obj list> typeof<Person list>,
131-
[],
131+
Set.empty,
132132
Set.ofList [
133-
Tracker.Direct (track "FirstName" typeof<Person> typeof<string>, [])
134-
Tracker.Direct (track "LastName" typeof<Person> typeof<string>, [])
133+
Tracker.Direct (track "FirstName" typeof<Person> typeof<string>, Set.empty)
134+
Tracker.Direct (track "LastName" typeof<Person> typeof<string>, Set.empty)
135135
]
136136
)
137137
let actual = tracker ImmutableDictionary.Empty info
@@ -161,17 +161,17 @@ let ``Property tracker can correctly jump over properties not being part of the
161161
let expected =
162162
Compose (
163163
{ Name = None; ParentType = typeof<obj list>; ReturnType = typeof<Person list> },
164-
[],
164+
Set.empty,
165165
set [
166166
Direct (
167167
{
168168
Name = Some "Friends"
169169
ParentType = typeof<Person>
170170
ReturnType = typeof<Person list>
171171
},
172-
[]
172+
Set.empty
173173
)
174-
Direct ({ Name = Some "Id"; ParentType = typeof<Person>; ReturnType = typeof<int> }, [])
174+
Direct ({ Name = Some "Id"; ParentType = typeof<Person>; ReturnType = typeof<int> }, Set.empty)
175175
]
176176
)
177177

0 commit comments

Comments
 (0)