diff --git a/tests/ext/test_ext_json.py b/tests/ext/test_ext_json.py index 2c6b4e05..55d37607 100644 --- a/tests/ext/test_ext_json.py +++ b/tests/ext/test_ext_json.py @@ -60,18 +60,6 @@ def test_parse_file(): CONFIG_PARSED['section'] -def test_handler_override_options_is_none(): - class MyApp(JsonApp): - class Meta: - core_handler_override_options = {} - handler_override_options = {} - argv = [] - - with MyApp() as app: - app.run() - app.render(dict(foo='bar')) - - def test_get_dict(): with JsonApp() as app: _config = app.config.get_dict() diff --git a/tests/ext/test_ext_yaml.py b/tests/ext/test_ext_yaml.py index cc3ea655..51fbee14 100644 --- a/tests/ext/test_ext_yaml.py +++ b/tests/ext/test_ext_yaml.py @@ -59,18 +59,6 @@ def test_parse_file(): CONFIG_PARSED['section'] -def test_handler_override_options_is_none(): - class MyApp(YamlApp): - class Meta: - core_handler_override_options = {} - handler_override_options = {} - argv = [] - - with MyApp() as app: - app.run() - app.render(dict(foo='bar')) - - def test_get_dict(): with YamlApp() as app: _config = app.config.get_dict()