diff --git a/tests/integration/clientv3/ordering_util_test.go b/tests/integration/clientv3/ordering_util_test.go index a4b65ec38581..1f84f15316f8 100644 --- a/tests/integration/clientv3/ordering_util_test.go +++ b/tests/integration/clientv3/ordering_util_test.go @@ -72,9 +72,10 @@ func TestEndpointSwitchResolvesViolation(t *testing.T) { t.Logf("Reconfigure client to speak only to the 'partitioned' member") cli.SetEndpoints(clus.Members[2].GRPCURL()) + t.Log("Getting data from the partitioned member...") _, err = orderingKv.Get(ctx, "foo", clientv3.WithSerializable()) if err != ordering.ErrNoGreaterRev { - t.Fatal("While speaking to partitioned leader, we should get ErrNoGreaterRev error") + t.Fatalf("While speaking to partitioned leader, we should get ErrNoGreaterRev error, %v", err) } }