From cd32f2b7283d0d2735bb26cac9481556e10eab09 Mon Sep 17 00:00:00 2001 From: Martin Czygan Date: Thu, 14 Nov 2019 16:14:14 +0100 Subject: adjust search test case for new wording > "Showing top " -> "Showing first " --- python/tests/web_search.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python/tests') diff --git a/python/tests/web_search.py b/python/tests/web_search.py index bdd858d0..4096a69c 100644 --- a/python/tests/web_search.py +++ b/python/tests/web_search.py @@ -16,7 +16,7 @@ def test_release_search(app): rv = app.get('/release/search?q=blood') assert rv.status_code == 200 - assert b"Showing top " in rv.data + assert b"Showing first " in rv.data @responses.activate def test_container_search(app): @@ -29,7 +29,7 @@ def test_container_search(app): rv = app.get('/container/search?q=blood') assert rv.status_code == 200 - assert b"Showing top " in rv.data + assert b"Showing first " in rv.data assert b"European Instructional Course Lectures" in rv.data assert b"British Editorial Society of Bone and Joint Surger" in rv.data -- cgit v1.2.3 From 0e4d65c773f586cc5cdafe8049e344a26688f710 Mon Sep 17 00:00:00 2001 From: Martin Czygan Date: Fri, 15 Nov 2019 21:48:31 +0100 Subject: address test issue --- python/tests/web_search.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'python/tests') diff --git a/python/tests/web_search.py b/python/tests/web_search.py index 4096a69c..19e2c29f 100644 --- a/python/tests/web_search.py +++ b/python/tests/web_search.py @@ -16,7 +16,8 @@ def test_release_search(app): rv = app.get('/release/search?q=blood') assert rv.status_code == 200 - assert b"Showing first " in rv.data + assert b"Showing" in rv.data + assert b"Quantum Studies of Acetylene Adsorption on Ice Surface" in rv.data @responses.activate def test_container_search(app): @@ -29,7 +30,7 @@ def test_container_search(app): rv = app.get('/container/search?q=blood') assert rv.status_code == 200 - assert b"Showing first " in rv.data + assert b"Showing" in rv.data assert b"European Instructional Course Lectures" in rv.data assert b"British Editorial Society of Bone and Joint Surger" in rv.data -- cgit v1.2.3