diff options
author | Alexandre Flament <alex@al-f.net> | 2020-11-15 10:26:15 +0100 |
---|---|---|
committer | Alexandre Flament <alex@al-f.net> | 2020-12-01 15:07:09 +0100 |
commit | b7f1a8424a9e0623865d9406e77b5205d2e0a7cc (patch) | |
tree | 19866170313466ea2ed9def6866a68d41854adca /tests | |
parent | a302ac56293230fd73817ad091153efbd143603a (diff) | |
download | searxng-b7f1a8424a9e0623865d9406e77b5205d2e0a7cc.tar.gz searxng-b7f1a8424a9e0623865d9406e77b5205d2e0a7cc.zip |
[fix] tests: fix duplicate method name
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/test_webapp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/test_webapp.py b/tests/unit/test_webapp.py index 75a968ad8..ac8851e33 100644 --- a/tests/unit/test_webapp.py +++ b/tests/unit/test_webapp.py @@ -145,7 +145,7 @@ class ViewsTestCase(SearxTestCase): result = self.app.post('/', data={'q': 'test', 'format': 'rss'}) self.assertEqual(result.status_code, 308) - def test_index_rss(self): + def test_search_rss(self): result = self.app.post('/search', data={'q': 'test', 'format': 'rss'}) self.assertIn( |