Skip to content

Commit 216f581

Browse files
Fix random assignment of transports to mock resources (#902)
Signed-off-by: Jonathan Thorpe <jthorpe@nvidia.com>
1 parent 264fb7a commit 216f581

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

nmostesting/suites/BCP0070302Test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ def _select_test_mxl_senders(self):
194194
and any(self._is_compatible(sender, receiver) for receiver in connectable_mxl_receivers)
195195
]
196196

197-
example_count = min(CONFIG.MAX_TEST_ITERATIONS or TEST_EXAMPLE_COUNT, len(testable_senders))
197+
example_count = min(TEST_EXAMPLE_COUNT, len(testable_senders))
198198
if example_count == 0:
199199
return []
200200

0 commit comments

Comments
 (0)