diff options
author | woorst <woorst@github.com> | 2017-08-21 11:45:23 -0500 |
---|---|---|
committer | woorst <woorst@github.com> | 2017-08-21 11:45:23 -0500 |
commit | 636b76019668960417c1253d1aa383b832c18a4d (patch) | |
tree | 99f9756a7cc3f5c606d0db95eba5d7411f95d44b | |
parent | 62b2f79ce7ac6000263dd8c52ec6e4096424180e (diff) | |
download | searxng-636b76019668960417c1253d1aa383b832c18a4d.tar.gz searxng-636b76019668960417c1253d1aa383b832c18a4d.zip |
remove unicode characters
-rw-r--r-- | tests/unit/engines/test_genius.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/engines/test_genius.py b/tests/unit/engines/test_genius.py index 2b563d87b..ea721943a 100644 --- a/tests/unit/engines/test_genius.py +++ b/tests/unit/engines/test_genius.py @@ -94,7 +94,7 @@ class TestGeniusEngine(SearxTestCase): "_type": "song", "annotation_count": 45, "api_path": "/songs/52916", - "full_title": "J't'emmerde by MC Jean Gab'1", + "full_title": "J't'emmerde by MC Jean Gab'1", "header_image_thumbnail_url": "https://images.genius.com/xxx.300x300x1.jpg", "header_image_url": "https://images.genius.com/ef9f736a86df3c3b1772f3fb7fbdb21c.1000x1000x1.jpg", "id": 52916, @@ -207,7 +207,7 @@ class TestGeniusEngine(SearxTestCase): # check lyric parsing r = results[0] self.assertEqual(r['url'], 'https://genius.com/Mc-jean-gab1-jtemmerde-lyrics') - self.assertEqual(r['title'], "J't'emmerde by MC Jean Gab'1") + self.assertEqual(r['title'], "J't'emmerde by MC Jean Gab'1") self.assertEqual(r['content'], "Sample lyrics") self.assertEqual(r['template'], 'videos.html') self.assertEqual(r['thumbnail'], 'https://images.genius.com/xxx.300x300x1.jpg') |