diff options
author | Noémi Ványi <kvch@users.noreply.github.com> | 2019-01-01 21:45:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-01 21:45:39 +0100 |
commit | cf8e2246010534b4cb617fe96d198f23d7d038dd (patch) | |
tree | e0812e88088a4dd2acc94bbc6ea57b3cf06b8a75 /tests | |
parent | 442772a6c5011f5dfd1e9d651d935b179cd14568 (diff) | |
parent | 73ec2ba74ec735bb5e989cab0336ecca24a93701 (diff) | |
download | searxng-cf8e2246010534b4cb617fe96d198f23d7d038dd.tar.gz searxng-cf8e2246010534b4cb617fe96d198f23d7d038dd.zip |
Merge pull request #1469 from bourrel/fix_bing_images
Fix bing image thumbnail path
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/engines/test_bing_images.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/unit/engines/test_bing_images.py b/tests/unit/engines/test_bing_images.py index afc4cd6f0..cb1d550d9 100644 --- a/tests/unit/engines/test_bing_images.py +++ b/tests/unit/engines/test_bing_images.py @@ -52,7 +52,7 @@ class TestBingImagesEngine(SearxTestCase): <li> <div> <div class="imgpt"> - <a m='{"purl":"page_url","murl":"img_url"}' mad='{"turl":"thumb_url"}'> + <a m='{"purl":"page_url","murl":"img_url","turl":"thumb_url"}'> <img src="" alt="alt text" /> </a> </div> @@ -60,7 +60,7 @@ class TestBingImagesEngine(SearxTestCase): </div> <div> <div class="imgpt"> - <a m='{"purl":"page_url2","murl":"img_url2"}' mad='{"turl":"thumb_url2"}'> + <a m='{"purl":"page_url2","murl":"img_url2","turl":"thumb_url2"}'> <img src="" alt="alt text 2" /> </a> </div> @@ -71,7 +71,7 @@ class TestBingImagesEngine(SearxTestCase): <li> <div> <div class="imgpt"> - <a m='{"purl":"page_url3","murl":"img_url3"}' mad='{"turl":"thumb_url3"}'> + <a m='{"purl":"page_url3","murl":"img_url3","turl":"thumb_url3"}'> <img src="" alt="alt text 3" /> </a> </div> |