Skip to content

Commit 2fb8b0a

Browse files
committed
refactor(tx): rename use_build_cmd to build_method in test_send_funds
Replaces the `use_build_cmd` parameter with `build_method` in the `test_send_funds` test and its decorators for clarity and consistency.
1 parent 009d29c commit 2fb8b0a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cardano_node_tests/tests/test_tx_basic.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ def cluster_default_tx_era(
129129

130130
@allure.link(helpers.get_vcs_link())
131131
@submit_utils.PARAM_SUBMIT_METHOD
132-
@common.PARAM_USE_BUILD_CMD
132+
@common.PARAM_BUILD_METHOD
133133
@pytest.mark.parametrize("amount", (1_500_000, 2_000_000, 5_000_000))
134134
@pytest.mark.parametrize(
135135
"dst_addr_type", ("shelley", "byron"), ids=("dst_shelley", "dst_byron")
@@ -148,8 +148,8 @@ def test_transfer_funds(
148148
src_addr_type: str,
149149
dst_addr_type: str,
150150
amount: int,
151-
use_build_cmd: bool,
152151
submit_method: str,
152+
build_method: str,
153153
):
154154
"""Send funds to payment address.
155155
@@ -170,7 +170,7 @@ def test_transfer_funds(
170170
name_template=temp_template,
171171
src_address=src_addr.address,
172172
submit_method=submit_method,
173-
use_build_cmd=use_build_cmd,
173+
build_method=build_method,
174174
txouts=txouts,
175175
tx_files=tx_files,
176176
# TODO: cardano-node issue #4752

0 commit comments

Comments
 (0)