From 5b49658c8beaf6656e02fdf3ab84095370137202 Mon Sep 17 00:00:00 2001 From: matejcik Date: Thu, 12 Jul 2018 16:56:47 +0200 Subject: [PATCH] ripple: fix broken fail-test --- trezorlib/tests/device_tests/test_msg_ripple_sign_tx.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/trezorlib/tests/device_tests/test_msg_ripple_sign_tx.py b/trezorlib/tests/device_tests/test_msg_ripple_sign_tx.py index a1f84d0a96..6d430bfdc9 100644 --- a/trezorlib/tests/device_tests/test_msg_ripple_sign_tx.py +++ b/trezorlib/tests/device_tests/test_msg_ripple_sign_tx.py @@ -80,5 +80,5 @@ class TestMsgRippleSignTx(TrezorTest): }) with pytest.raises(CallException) as exc: ripple.sign_tx(self.client, parse_path("m/44'/144'/0'/0/2"), msg) - assert exc.value.args[0] == messages.FailureType.ProcessError - assert exc.value.args[1].endswith('Fee must be in the range of 10 to 10,000 drops') + assert exc.value.args[0] == messages.FailureType.ProcessError + assert exc.value.args[1].endswith('Fee must be in the range of 10 to 10,000 drops')