diff options
| author | Adam Tauber <asciimoo@gmail.com> | 2015-04-26 13:37:11 -0400 |
|---|---|---|
| committer | Adam Tauber <asciimoo@gmail.com> | 2015-04-26 13:37:11 -0400 |
| commit | ad8611c7558b9de778f4d9bb304d053f2fc99020 (patch) | |
| tree | c59a74fa476afae0d92c52bbeadd4947ed6f6f49 /searx/tests/engines/test_stackoverflow.py | |
| parent | 18e7d6070275fbc48aef3d84a7f69811541e1fe5 (diff) | |
| parent | 043b269c6ee3157d7ab42fd394ed5a84185980cb (diff) | |
Merge pull request #301 from dalf/https
engines: use https when possible
Diffstat (limited to 'searx/tests/engines/test_stackoverflow.py')
| -rw-r--r-- | searx/tests/engines/test_stackoverflow.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/tests/engines/test_stackoverflow.py b/searx/tests/engines/test_stackoverflow.py index e69bafb4c..18a1ff4bd 100644 --- a/searx/tests/engines/test_stackoverflow.py +++ b/searx/tests/engines/test_stackoverflow.py @@ -64,7 +64,7 @@ class TestStackoverflowEngine(SearxTestCase): self.assertEqual(type(results), list) self.assertEqual(len(results), 1) self.assertEqual(results[0]['title'], 'This is the title') - self.assertEqual(results[0]['url'], 'http://stackoverflow.com/questions/this.is.the.url') + self.assertEqual(results[0]['url'], 'https://stackoverflow.com/questions/this.is.the.url') self.assertEqual(results[0]['content'], 'This is the content') html = """ |