@@ -44,7 +44,9 @@ def test_get_properties_from_endpoint():
4444 parameters = {},
4545 )
4646
47- properties = properties_from_endpoint .get_properties_from_endpoint (stream_slice = StreamSlice (cursor_slice = {}, partition = {}))
47+ properties = properties_from_endpoint .get_properties_from_endpoint (
48+ stream_slice = StreamSlice (cursor_slice = {}, partition = {})
49+ )
4850
4951 assert len (properties ) == 9
5052 assert properties == expected_properties
@@ -85,7 +87,9 @@ def test_get_properties_from_endpoint_with_multiple_field_paths():
8587 parameters = {},
8688 )
8789
88- properties = properties_from_endpoint .get_properties_from_endpoint (stream_slice = StreamSlice (cursor_slice = {}, partition = {}))
90+ properties = properties_from_endpoint .get_properties_from_endpoint (
91+ stream_slice = StreamSlice (cursor_slice = {}, partition = {})
92+ )
8993
9094 assert len (properties ) == 9
9195 assert properties == expected_properties
@@ -127,7 +131,9 @@ def test_get_properties_from_endpoint_with_interpolation():
127131 parameters = {},
128132 )
129133
130- properties = properties_from_endpoint .get_properties_from_endpoint (stream_slice = StreamSlice (cursor_slice = {}, partition = {}))
134+ properties = properties_from_endpoint .get_properties_from_endpoint (
135+ stream_slice = StreamSlice (cursor_slice = {}, partition = {})
136+ )
131137
132138 assert len (properties ) == 9
133139 assert properties == expected_properties
@@ -148,9 +154,15 @@ def test_given_multiple_calls_when_get_properties_from_endpoint_then_only_call_r
148154 parameters = {},
149155 )
150156
151- properties_from_endpoint .get_properties_from_endpoint (stream_slice = StreamSlice (cursor_slice = {}, partition = {}))
152- properties_from_endpoint .get_properties_from_endpoint (stream_slice = StreamSlice (cursor_slice = {}, partition = {}))
153- properties_from_endpoint .get_properties_from_endpoint (stream_slice = StreamSlice (cursor_slice = {}, partition = {}))
157+ properties_from_endpoint .get_properties_from_endpoint (
158+ stream_slice = StreamSlice (cursor_slice = {}, partition = {})
159+ )
160+ properties_from_endpoint .get_properties_from_endpoint (
161+ stream_slice = StreamSlice (cursor_slice = {}, partition = {})
162+ )
163+ properties_from_endpoint .get_properties_from_endpoint (
164+ stream_slice = StreamSlice (cursor_slice = {}, partition = {})
165+ )
154166
155167 assert retriever .read_records .call_count == 1
156168
@@ -172,6 +184,8 @@ def test_given_value_is_int_when_get_properties_from_endpoint_then_return_str():
172184 parameters = {},
173185 )
174186
175- properties = properties_from_endpoint .get_properties_from_endpoint (stream_slice = StreamSlice (cursor_slice = {}, partition = {}))
187+ properties = properties_from_endpoint .get_properties_from_endpoint (
188+ stream_slice = StreamSlice (cursor_slice = {}, partition = {})
189+ )
176190
177191 assert properties == expected_properties
0 commit comments