Skip to content

Commit

Permalink
Expect Json used Id which tripped canary builds testing against the n…
Browse files Browse the repository at this point in the history
…uget package and not the referenced source
  • Loading branch information
Mpdreamz committed Sep 3, 2018
1 parent 5bba8f7 commit 3848aee
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ protected override LazyResponses ClientUsage() => Calls(

protected override object ExpectJson { get; } = new
{
ids = Developer.Developers.Select(p => (Id)p.Id).Take(2)
ids = Developer.Developers.Select(p => p.Id).Take(2)
};

protected override void ExpectResponse(IMultiTermVectorsResponse response)
Expand Down

0 comments on commit 3848aee

Please sign in to comment.