Skip to content

Commit

Permalink
fix unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
popenta committed Feb 19, 2024
1 parent de484ec commit 303411e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion multiversx_sdk_cli/tests/test_cli_wallet.py
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,8 @@ def test_sign_and_verify_message_with_multi_address_pem(capsys: Any):


def _read_stdout_mnemonic(capsys: Any) -> str:
return _read_stdout(capsys).replace("Mnemonic:", "").strip()
lines = _read_stdout(capsys).split("\n")
return lines[0].replace("Mnemonic:", "").strip()


def _read_stdout(capsys: Any) -> str:
Expand Down

0 comments on commit 303411e

Please sign in to comment.