forked from Ponysearch/Ponysearch
fix line lengths for pep8 standards
This commit is contained in:
parent
2434c29dc5
commit
62b2f79ce7
1 changed files with 6 additions and 6 deletions
|
@ -95,7 +95,7 @@ class TestGeniusEngine(SearxTestCase):
|
||||||
"annotation_count": 45,
|
"annotation_count": 45,
|
||||||
"api_path": "/songs/52916",
|
"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/ef9f736a86df3c3b1772f3fb7fbdb21c.300x300x1.jpg",
|
"header_image_thumbnail_url": "https://images.genius.com/xxx.300x300x1.jpg",
|
||||||
"header_image_url": "https://images.genius.com/ef9f736a86df3c3b1772f3fb7fbdb21c.1000x1000x1.jpg",
|
"header_image_url": "https://images.genius.com/ef9f736a86df3c3b1772f3fb7fbdb21c.1000x1000x1.jpg",
|
||||||
"id": 52916,
|
"id": 52916,
|
||||||
"instrumental": false,
|
"instrumental": false,
|
||||||
|
@ -104,7 +104,7 @@ class TestGeniusEngine(SearxTestCase):
|
||||||
"lyrics_updated_at": 1498744545,
|
"lyrics_updated_at": 1498744545,
|
||||||
"path": "/Mc-jean-gab1-jtemmerde-lyrics",
|
"path": "/Mc-jean-gab1-jtemmerde-lyrics",
|
||||||
"pyongs_count": 4,
|
"pyongs_count": 4,
|
||||||
"song_art_image_thumbnail_url": "https://images.genius.com/ef9f736a86df3c3b1772f3fb7fbdb21c.300x300x1.jpg",
|
"song_art_image_thumbnail_url": "https://images.genius.com/xxx.300x300x1.jpg",
|
||||||
"stats": {
|
"stats": {
|
||||||
"hot": false,
|
"hot": false,
|
||||||
"unreviewed_annotations": 0,
|
"unreviewed_annotations": 0,
|
||||||
|
@ -164,8 +164,8 @@ class TestGeniusEngine(SearxTestCase):
|
||||||
"result": {
|
"result": {
|
||||||
"_type": "album",
|
"_type": "album",
|
||||||
"api_path": "/albums/132332",
|
"api_path": "/albums/132332",
|
||||||
"cover_art_thumbnail_url": "https://images.genius.com/147d70434ba190b9b1c26b06aee87d17.300x300x1.jpg",
|
"cover_art_thumbnail_url": "https://images.genius.com/xxx.300x300x1.jpg",
|
||||||
"cover_art_url": "https://images.genius.com/147d70434ba190b9b1c26b06aee87d17.600x600x1.jpg",
|
"cover_art_url": "https://images.genius.com/xxx.600x600x1.jpg",
|
||||||
"full_title": "ASD by A Skylit Drive",
|
"full_title": "ASD by A Skylit Drive",
|
||||||
"id": 132332,
|
"id": 132332,
|
||||||
"name": "ASD",
|
"name": "ASD",
|
||||||
|
@ -210,7 +210,7 @@ class TestGeniusEngine(SearxTestCase):
|
||||||
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['content'], "Sample lyrics")
|
||||||
self.assertEqual(r['template'], 'videos.html')
|
self.assertEqual(r['template'], 'videos.html')
|
||||||
self.assertEqual(r['thumbnail'], 'https://images.genius.com/ef9f736a86df3c3b1772f3fb7fbdb21c.300x300x1.jpg')
|
self.assertEqual(r['thumbnail'], 'https://images.genius.com/xxx.300x300x1.jpg')
|
||||||
created = datetime.fromtimestamp(1498744545)
|
created = datetime.fromtimestamp(1498744545)
|
||||||
self.assertEqual(r['publishedDate'], created)
|
self.assertEqual(r['publishedDate'], created)
|
||||||
|
|
||||||
|
@ -228,4 +228,4 @@ class TestGeniusEngine(SearxTestCase):
|
||||||
self.assertEqual(r['title'], "ASD by A Skylit Drive")
|
self.assertEqual(r['title'], "ASD by A Skylit Drive")
|
||||||
self.assertEqual(r['content'], "Released: 2015")
|
self.assertEqual(r['content'], "Released: 2015")
|
||||||
self.assertEqual(r['template'], 'videos.html')
|
self.assertEqual(r['template'], 'videos.html')
|
||||||
self.assertEqual(r['thumbnail'], 'https://images.genius.com/147d70434ba190b9b1c26b06aee87d17.600x600x1.jpg')
|
self.assertEqual(r['thumbnail'], 'https://images.genius.com/xxx.600x600x1.jpg')
|
||||||
|
|
Loading…
Reference in a new issue