diff --git a/tests/integration/test_basic.py b/tests/integration/test_basic.py index bfad6153..99121456 100644 --- a/tests/integration/test_basic.py +++ b/tests/integration/test_basic.py @@ -39,7 +39,7 @@ def test_basic_json_use(tmpdir, httpbin): test_fixture = str(tmpdir.join("synopsis.json")) with vcr.use_cassette(test_fixture, serializer="json"): response = urlopen(httpbin.url).read() - assert b"A simple HTTP Request & Response Service." in response + assert b"HTTP Request & Response Service" in response def test_patched_content(tmpdir, httpbin): diff --git a/tests/integration/test_register_persister.py b/tests/integration/test_register_persister.py index e904197c..375f14be 100644 --- a/tests/integration/test_register_persister.py +++ b/tests/integration/test_register_persister.py @@ -66,7 +66,7 @@ def test_load_cassette_with_custom_persister(tmpdir, httpbin): with my_vcr.use_cassette(test_fixture, serializer="json"): response = urlopen(httpbin.url).read() - assert b"A simple HTTP Request & Response Service." in response + assert b"HTTP Request & Response Service" in response def test_load_cassette_persister_exception_handling(tmpdir, httpbin):