From bc33cc73acfb84e04498779054d29ea35f834343 Mon Sep 17 00:00:00 2001 From: Martin Kourim Date: Wed, 12 Nov 2025 17:32:51 +0100 Subject: [PATCH] refactor(tests): remove unused 'mark' param in cluster fixture The 'mark' parameter in the cluster fixture for TestManyUTXOs was removed as it was not being needed since we are using subtests. --- cardano_node_tests/tests/test_tx_many_utxos.py | 1 - 1 file changed, 1 deletion(-) diff --git a/cardano_node_tests/tests/test_tx_many_utxos.py b/cardano_node_tests/tests/test_tx_many_utxos.py index 77f019077..a27c7beba 100644 --- a/cardano_node_tests/tests/test_tx_many_utxos.py +++ b/cardano_node_tests/tests/test_tx_many_utxos.py @@ -29,7 +29,6 @@ class TestManyUTXOs: @pytest.fixture def cluster(self, cluster_manager: cluster_management.ClusterManager) -> clusterlib.ClusterLib: return cluster_manager.get( - mark="many_utxos", lock_resources=[cluster_management.Resources.PERF], prio=True, )