Skip to content

Commit

Permalink
RavenDB-21938 : fix flaky test - need to wait for both transformation…
Browse files Browse the repository at this point in the history
…s to reach destination
  • Loading branch information
aviv committed Jan 28, 2024
1 parent 4257f2a commit 338932d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -123,10 +123,10 @@ public void WithDocumentPrefix()
{
using (var session = dest.OpenSession())
{
var user = session.Load<User>("users/1-A,Chicago");
return user != null;
var docs = session.Advanced.LoadStartingWith<User>("users/1-A");
return docs.Length;
}
}, true);
}, expectedVal: 2);

string secondaryId;
using (var session = dest.OpenSession())
Expand Down

0 comments on commit 338932d

Please sign in to comment.