Skip to content

Commit

Permalink
fix cross cluster search test
Browse files Browse the repository at this point in the history
  • Loading branch information
russcam committed Apr 2, 2019
1 parent 2003607 commit 7117d9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Tests/Tests/Search/Search/SearchApiTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -532,10 +532,10 @@ public CrossClusterSearchApiTests(CrossClusterSearchCluster cluster, EndpointUsa

protected override SearchRequest<Project> Initializer => new SearchRequest<Project>(Nest.Indices.Index<Project>().And("cluster_two:project"))
{
Query = new QueryContainer(new MatchAllQuery())
Query = new MatchAllQuery()
};

protected override string UrlPath => $"/project%2Ccluster_two%3Aproject/doc/_search";
protected override string UrlPath => $"/project%2Ccluster_two%3Aproject/_search";

protected override LazyResponses ClientUsage() => Calls(
(c, f) => c.Search(f),
Expand Down

0 comments on commit 7117d9a

Please sign in to comment.