From 20a87b686244ae717df58d3bef62cb9123024cf9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurko=20Gospodneti=C4=87?= Date: Tue, 1 Jul 2014 23:48:45 +0200 Subject: [PATCH] add missing comment & empty line (stylistic) --- tests/test_request_construction.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tests/test_request_construction.py b/tests/test_request_construction.py index e07d12d..7d8e42f 100644 --- a/tests/test_request_construction.py +++ b/tests/test_request_construction.py @@ -98,6 +98,7 @@ def parametrize_single_element_input_test(param_names, param_values): expanded_param_values.append(param) return (param_names, expanded_param_values), {} + @pytest.mark.indirect_parametrize(parametrize_single_element_input_test, ("xsd", "external_element_name", "args", "request_body"), ( # Bare non-optional element. @@ -1029,6 +1030,12 @@ def test_wrapped_parameter(monkeypatch): """ % data) +############################################################################### +# +# Test utilities. +# +############################################################################### + def _assert_request_content(request, expected_xml): CompareSAX.data2data(request.envelope, expected_xml)