Skip to content

Commit

Permalink
Fixed logic error in sync test
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Wilkerson-Barker committed Jan 21, 2023
1 parent eb217c2 commit c93aecd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_sync.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3722,7 +3722,7 @@ TEST(Sync_UploadDownloadProgress_6)
// currently wait for the event loop thread to be terminated
// TODO: Update this after event loop stop is updated
progress_cv.wait_for(lock, std::chrono::seconds(15), [&]() {
return session != nullptr;
return session == nullptr;
});

client.stop();
Expand Down

0 comments on commit c93aecd

Please sign in to comment.