From 5e3bd1d54c50229bba87c305cf2826ee97fecf39 Mon Sep 17 00:00:00 2001 From: diminator Date: Thu, 12 Jan 2017 10:43:11 +0100 Subject: [PATCH] rename test functions --- tests/web/test_votes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/web/test_votes.py b/tests/web/test_votes.py index d168b109..4de50502 100644 --- a/tests/web/test_votes.py +++ b/tests/web/test_votes.py @@ -26,7 +26,7 @@ def test_get_votes_endpoint(b, client): @pytest.mark.bdb @pytest.mark.usefixtures('inputs') -def test_get_votes_multiple(b, client): +def test_get_votes_endpoint_multiple_votes(b, client): tx = Transaction.create([b.me], [([b.me], 1)]) tx = tx.sign([b.me_private]) @@ -54,7 +54,7 @@ def test_get_votes_endpoint_returns_empty_list_not_found(client): @pytest.mark.bdb -def test_get_status_endpoint_returns_400_bad_query_params(client): +def test_get_votes_endpoint_returns_400_bad_query_params(client): res = client.get(VOTES_ENDPOINT) assert res.status_code == 400