File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Octokit.GraphQL.Core.UnitTests Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -250,16 +250,16 @@ public void Can_Use_Conditional_To_Compare_To_Null()
250
250
// data["data"]["repository"],
251
251
// x => x["name"].Type != JTokenType.Null ? x["name"].ToObject<string>() : null);
252
252
253
- var readableString =
253
+ var readableString =
254
254
"data => Rewritten.Value.Select(data[\" data\" ][\" repository\" ],x => (x[\" name\" ].Type != JTokenType.Null) ? x[\" name\" ].ToObject<string>() : null)" ;
255
-
255
+
256
256
// Expression put through ReadableExpression outputs the following, so I'm using a hard coded string instead
257
257
// data => Rewritten.Value.Select(data["data"]["repository"], x => (((int)x["name"].Type) != 10) ? x["name"].ToObject<string>() : null)
258
258
259
259
ExpressionRewriterAssertions . AssertExpressionQueryEqual ( readableString , query ) ;
260
260
}
261
261
262
-
262
+
263
263
[ Fact ]
264
264
public void Union_IssueOrPullRequest ( )
265
265
{
You can’t perform that action at this time.
0 commit comments