Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make some tests deterministic #16693

Merged
merged 1 commit into from
Jul 24, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5796,7 +5796,8 @@ public virtual Task Include13(bool isAsync)
{
x => x.one,
x => x.two
});
},
elementSorter: e => e.one.Id);
}

[ConditionalTheory]
Expand All @@ -5820,7 +5821,8 @@ public virtual Task Include14(bool isAsync)
x => x.one,
// issue #15368
//x => x.two,
});
},
elementSorter: e => e.one.Id);
}

[ConditionalFact]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ public virtual Task GroupBy_aggregate_projecting_conditional_expression_based_on
Key = g.Key == null ? "is null" : "is not null",
Sum = g.Sum(o => o.OrderID)
}),
e => e.Key);
e => e.Sum);
}

#endregion
Expand Down