diff --git a/test/replication/misc.result b/test/replication/misc.result
index 5d7a6512e0f07567f13cac139bb5811efff7090d..f896ee4a9afee3a4ebff31702c556beb0c2a13a9 100644
--- a/test/replication/misc.result
+++ b/test/replication/misc.result
@@ -620,9 +620,9 @@ test_run:wait_log("replica", "REPLICASET_UUID_MISMATCH", nil, 1.0)
 ---
 - REPLICASET_UUID_MISMATCH
 ...
-box.info.replication[2].downstream.status
+test_run:wait_downstream(2, {status = 'stopped'})
 ---
-- stopped
+- true
 ...
 test_run:cmd("stop server replica")
 ---
diff --git a/test/replication/misc.test.lua b/test/replication/misc.test.lua
index 5a6cecfaafc5c2039a6e92c4795672f7fa081bc7..4be12ba3b11c703f06ddea281537cd9223bd50fb 100644
--- a/test/replication/misc.test.lua
+++ b/test/replication/misc.test.lua
@@ -251,7 +251,7 @@ _ = box.space._schema:replace{'cluster', tostring(uuid.new())}
 -- master believes replica is in cluster, but their cluster UUIDs differ.
 test_run:cmd("start server replica")
 test_run:wait_log("replica", "REPLICASET_UUID_MISMATCH", nil, 1.0)
-box.info.replication[2].downstream.status
+test_run:wait_downstream(2, {status = 'stopped'})
 
 test_run:cmd("stop server replica")
 test_run:cmd("cleanup server replica")