9a7987
--- tests/test_datastructures.py.orig	2021-05-11 07:09:47.475789063 +0000
9a7987
+++ tests/test_datastructures.py	2021-05-11 07:10:04.505789063 +0000
9a7987
@@ -1235,6 +1235,7 @@
9a7987
         for name in ("fileno", "writable", "readable", "seekable"):
9a7987
             assert hasattr(file_storage, name)
9a7987
 
9a7987
+    @pytest.mark.filterwarnings("ignore::pytest.PytestUnraisableExceptionWarning")
9a7987
     def test_save_to_pathlib_dst(self, tmp_path):
9a7987
         src = tmp_path / "src.txt"
9a7987
         src.write_text(u"test")
9a7987
--- tests/test_formparser.py.orig	2021-05-11 07:09:58.941789063 +0000
9a7987
+++ tests/test_formparser.py	2021-05-11 07:10:04.505789063 +0000
9a7987
@@ -239,7 +239,7 @@
9a7987
         stream, _, _ = parser.parse_from_environ({"wsgi.input": ""})
9a7987
         assert stream is not None
9a7987
 
9a7987
-
9a7987
+@pytest.mark.filterwarnings("ignore::pytest.PytestUnraisableExceptionWarning")
9a7987
 class TestMultiPart(object):
9a7987
     def test_basic(self):
9a7987
         resources = join(dirname(__file__), "multipart")