From e0b0c57f7e31c06ad301aafd1e3b36159c567d6a Mon Sep 17 00:00:00 2001 From: "Augusto F. Hack" Date: Wed, 31 May 2017 11:31:35 -0300 Subject: [PATCH] typo --- raiden/tests/api/test_api.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/raiden/tests/api/test_api.py b/raiden/tests/api/test_api.py index bfc377c3e3..a596a8a356 100644 --- a/raiden/tests/api/test_api.py +++ b/raiden/tests/api/test_api.py @@ -106,7 +106,7 @@ def test_channel_to_api_dict(raiden_network, token_addresses, settle_timeout): def test_url_with_invalid_address(rest_api_port_number, api_backend): - """ Addresses required the leading 0x in the urls. """ + """ Addresses require the leading 0x in the urls. """ url_without_prefix = ( 'http://localhost:{port}/api/1/' @@ -123,7 +123,7 @@ def test_url_with_invalid_address(rest_api_port_number, api_backend): def test_payload_with_address_without_prefix(api_backend): - """ Addresses required leading 0x in the payload. """ + """ Addresses require leading 0x in the payload. """ invalid_address = '61c808d82a3ac53231750dadc13c777b59310bd9' channel_data_obj = { 'partner_address': invalid_address,