diff --git a/tests/test_pagure_flask_ui_app.py b/tests/test_pagure_flask_ui_app.py index 5f0e396..3a508a8 100644 --- a/tests/test_pagure_flask_ui_app.py +++ b/tests/test_pagure_flask_ui_app.py @@ -35,16 +35,6 @@ import tests class PagureFlaskApptests(tests.Modeltests): """ Tests for flask app controller of pagure """ - @patch.dict('pagure.config.config', {'HTML_TITLE': 'Pagure HTML title set'}) - def test_index_html_title(self): - """ Test the index endpoint with a set html title. """ - - output = self.app.get('/') - self.assertEqual(output.status_code, 200) - self.assertIn( - 'Home - Pagure HTML title set', - output.get_data(as_text=True)) - def test_watch_list(self): ''' Test for watch list of a user '''