From 6b6fe295c592d77cd8dad147b71cbbb240948c1b Mon Sep 17 00:00:00 2001 From: Amin Alaee Date: Fri, 17 Dec 2021 15:36:10 +0100 Subject: [PATCH] remove extra test --- tests/test_staticfiles.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/tests/test_staticfiles.py b/tests/test_staticfiles.py index 0b7e48c83..8cac8eaa6 100644 --- a/tests/test_staticfiles.py +++ b/tests/test_staticfiles.py @@ -464,11 +464,3 @@ def test_staticfiles_follows_symlinks_to_break_out_of_dir(tmpdir, test_client_fa assert response.url == "http://testserver/index.html" assert response.status_code == 200 assert response.text == "

Hello

" - - app = StaticFiles(directory=statics_path, html=True) - client = test_client_factory(app) - - response = client.get("/") - assert response.url == "http://testserver/" - assert response.status_code == 200 - assert response.text == "

Hello

"