diff --git a/pandas/tests/io/parser/common/test_common_basic.py b/pandas/tests/io/parser/common/test_common_basic.py index 0ac0fe23bbbb7..115a2976ce618 100644 --- a/pandas/tests/io/parser/common/test_common_basic.py +++ b/pandas/tests/io/parser/common/test_common_basic.py @@ -12,7 +12,6 @@ import numpy as np import pytest -from pandas.compat import PY310 from pandas.errors import ( EmptyDataError, ParserError, @@ -676,11 +675,6 @@ def test_read_table_equivalency_to_read_csv(all_parsers): tm.assert_frame_equal(result, expected) -@pytest.mark.skipif( - PY310, - reason="GH41935 This test is leaking only on Python 3.10," - "causing other tests to fail with a cryptic error.", -) @pytest.mark.parametrize("read_func", ["read_csv", "read_table"]) def test_read_csv_and_table_sys_setprofile(all_parsers, read_func): # GH#41069