File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
tests/FSharp.Data.GraphQL.Tests Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments