@@ -217,6 +217,9 @@ def fake_set_environ(value):
217
217
218
218
self .application_args = (fake_wsgi_environ , self .fake_start_response ,)
219
219
self .application_kwargs = dict (
220
+ _wrap_wsgi_errors = noop ,
221
+ _config_file = _TEST_CONF_FILE ,
222
+ _skip_log = True ,
220
223
_format_output = self .instrumented_format_output ,
221
224
_retrieve_handler = self .instrumented_retrieve_handler ,
222
225
_set_environ = fake_set_environ ,
@@ -227,9 +230,6 @@ def test_return_value_ok_returns_status_200(self):
227
230
228
231
application_result = migwsgi ._application (
229
232
* self .application_args ,
230
- _wrap_wsgi_errors = noop ,
231
- _config_file = _TEST_CONF_FILE ,
232
- _skip_log = True ,
233
233
** self .application_kwargs
234
234
)
235
235
@@ -243,9 +243,6 @@ def test_return_value_ok_returns_valid_html_page(self):
243
243
244
244
application_result = migwsgi ._application (
245
245
* self .application_args ,
246
- _wrap_wsgi_errors = noop ,
247
- _config_file = _TEST_CONF_FILE ,
248
- _skip_log = True ,
249
246
** self .application_kwargs
250
247
)
251
248
@@ -260,9 +257,6 @@ def test_return_value_ok_returns_expected_title(self):
260
257
261
258
application_result = migwsgi ._application (
262
259
* self .application_args ,
263
- _wrap_wsgi_errors = noop ,
264
- _config_file = _TEST_CONF_FILE ,
265
- _skip_log = True ,
266
260
** self .application_kwargs
267
261
)
268
262
0 commit comments