From 65d014297d01bb767a11555f32b361193b5bfd28 Mon Sep 17 00:00:00 2001 From: Matthias Diener Date: Thu, 9 Nov 2023 17:33:10 -0600 Subject: [PATCH] make the test a bit more difficult --- test/test_distributed.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/test_distributed.py b/test/test_distributed.py index c36f4caae..3a3e785fc 100644 --- a/test/test_distributed.py +++ b/test/test_distributed.py @@ -279,10 +279,10 @@ def gen_comm(rdagc): nonlocal comm_tag comm_tag += 1 - if comm_tag % 5 == 1: - tag = (comm_tag, frozenset([_RandomDAGTag, _RandomDAGTag])) + if comm_tag % 5 == 1 or 1: + tag = (comm_tag, frozenset([_RandomDAGTag, "a", comm_tag])) elif comm_tag % 5 == 2: - tag = (comm_tag, (_RandomDAGTag,)) + tag = (comm_tag, (_RandomDAGTag, "b")) else: tag = (comm_tag, _RandomDAGTag) # noqa: B023