Skip to content

Commit 4f357bb

Browse files
committed
remove debugging statement again
1 parent 18b29f0 commit 4f357bb

File tree

2 files changed

+1
-10
lines changed

2 files changed

+1
-10
lines changed

test/asynchronous/test_discovery_and_monitoring.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,8 +216,6 @@ async def run_scenario(self):
216216
for i, phase in enumerate(scenario_def["phases"]):
217217
# Including the phase description makes failures easier to debug.
218218
description = phase.get("description", str(i))
219-
if self._testMethodName == "test_single_direct_connection_external_ip":
220-
print("here")
221219
with assertion_context(f"phase: {description}"):
222220
for response in phase.get("responses", []):
223221
await got_hello(c, common.partition_node(response[0]), response[1])

test/test_discovery_and_monitoring.py

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -215,8 +215,6 @@ def run_scenario(self):
215215
for i, phase in enumerate(scenario_def["phases"]):
216216
# Including the phase description makes failures easier to debug.
217217
description = phase.get("description", str(i))
218-
if self._testMethodName == "test_single_direct_connection_external_ip":
219-
print("here")
220218
with assertion_context(f"phase: {description}"):
221219
for response in phase.get("responses", []):
222220
got_hello(c, common.partition_node(response[0]), response[1])
@@ -263,12 +261,7 @@ def send_cluster_time(time, inc, should_update):
263261
got_hello(
264262
t,
265263
("host", 27017),
266-
{
267-
"ok": 1,
268-
"minWireVersion": 0,
269-
"maxWireVersion": common.MIN_SUPPORTED_WIRE_VERSION,
270-
"$clusterTime": new,
271-
},
264+
{"ok": 1, "minWireVersion": 0, "maxWireVersion": 6, "$clusterTime": new},
272265
)
273266

274267
actual = t.max_cluster_time()

0 commit comments

Comments
 (0)