File tree 1 file changed +6
-6
lines changed
tests/FSharp.Data.GraphQL.Tests 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`` () =
128
128
let expected =
129
129
Compose (
130
130
track null typeof< obj list> typeof< Person list>,
131
- [] ,
131
+ Set.empty ,
132
132
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 )
135
135
]
136
136
)
137
137
let actual = tracker ImmutableDictionary.Empty info
@@ -161,17 +161,17 @@ let ``Property tracker can correctly jump over properties not being part of the
161
161
let expected =
162
162
Compose (
163
163
{ Name = None; ParentType = typeof< obj list>; ReturnType = typeof< Person list> },
164
- [] ,
164
+ Set.empty ,
165
165
set [
166
166
Direct (
167
167
{
168
168
Name = Some " Friends"
169
169
ParentType = typeof< Person>
170
170
ReturnType = typeof< Person list>
171
171
},
172
- []
172
+ Set.empty
173
173
)
174
- Direct ({ Name = Some " Id" ; ParentType = typeof< Person>; ReturnType = typeof< int> }, [] )
174
+ Direct ({ Name = Some " Id" ; ParentType = typeof< Person>; ReturnType = typeof< int> }, Set.empty )
175
175
]
176
176
)
177
177
You can’t perform that action at this time.
0 commit comments