Fix tests

This commit is contained in:
Matthew Fioravante 2021-10-26 22:36:10 -04:00
parent c8ced5b1c4
commit f0886ccbf4
2 changed files with 3 additions and 3 deletions

View File

@ -158,7 +158,7 @@ TEST_CASE("watch changes in the past")
{ {
etcd::SyncClient etcd(etcd_uri); etcd::SyncClient etcd(etcd_uri);
int index = etcd.set("/test/key1", "42").index(); auto index = etcd.set("/test/key1", "42").index();
etcd.set("/test/key1", "43"); etcd.set("/test/key1", "43");
etcd.set("/test/key1", "44"); etcd.set("/test/key1", "44");

View File

@ -375,13 +375,13 @@ TEST_CASE("watch changes in the past")
{ {
etcd::Client etcd("http://127.0.0.1:2379"); etcd::Client etcd("http://127.0.0.1:2379");
REQUIRE(0 == etcd.rmdir("/test", true).get().error_code()); REQUIRE(0 == etcd.rmdir("/test", true).get().error_code());
int index = etcd.set("/test/key1", "42").get().index(); auto index = etcd.set("/test/key1", "42").get().index();
etcd.set("/test/key1", "43").wait(); etcd.set("/test/key1", "43").wait();
etcd.set("/test/key1", "44").wait(); etcd.set("/test/key1", "44").wait();
etcd.set("/test/key1", "45").wait(); etcd.set("/test/key1", "45").wait();
int head_index = etcd.head().get().index(); auto head_index = etcd.head().get().index();
CHECK(index + 3 == head_index); CHECK(index + 3 == head_index);
etcd::Response res = etcd.watch("/test/key1", ++index).get(); etcd::Response res = etcd.watch("/test/key1", ++index).get();