From eea4f8be5d07643982cc2d2b6fb36c541c4121ee Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Sat, 13 Dec 2014 19:28:33 +0100 Subject: [PATCH] fix ApplySettings test --- tests/test_msg_applysettings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_msg_applysettings.py b/tests/test_msg_applysettings.py index 42805ee..ba63c82 100644 --- a/tests/test_msg_applysettings.py +++ b/tests/test_msg_applysettings.py @@ -15,7 +15,7 @@ class TestMsgApplysettings(common.TrezorTest): proto.PinMatrixRequest(), proto.Success(), proto.Features()]) - self.client.apply_settings('new label', 'english') + self.client.apply_settings(label='new label') self.assertEqual(self.client.features.label, 'new label') @@ -28,7 +28,7 @@ class TestMsgApplysettings(common.TrezorTest): proto.PinMatrixRequest(), proto.Success(), proto.Features()]) - self.client.apply_settings('new label', 'nonexistent') + self.client.apply_settings(language='nonexistent') self.assertEqual(self.client.features.language, 'english')