From ad0a090724299b26479b698ae63fb1c8f8deccea Mon Sep 17 00:00:00 2001 From: 345thomas Date: Mon, 23 Jul 2018 23:39:49 +0100 Subject: [PATCH] unit test accounts for new format string syntax where source type is maintained and not converted to string by default --- tests/unit/pypyraws/steps/waitfor_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/pypyraws/steps/waitfor_test.py b/tests/unit/pypyraws/steps/waitfor_test.py index 74beabd..21afd96 100644 --- a/tests/unit/pypyraws/steps/waitfor_test.py +++ b/tests/unit/pypyraws/steps/waitfor_test.py @@ -828,7 +828,7 @@ def test_get_poll_args_substitutions(): error_on_wait_timeout) = waitfor_step.get_poll_args(waitfor_dict, context) assert wait_for_field == 'field name' - assert to_be == '123.4' + assert to_be == 123.4 assert poll_interval == 99 assert max_attempts == 66 assert not error_on_wait_timeout