diff --git a/tiled/_tests/test_writing.py b/tiled/_tests/test_writing.py index 03f171e6d..28609bc60 100644 --- a/tiled/_tests/test_writing.py +++ b/tiled/_tests/test_writing.py @@ -510,22 +510,9 @@ def test_write_with_specified_mimetype(tree): }, ), ( - { - "C": pandas.array(["x", "y"], dtype="string[pyarrow]"), - "D": pandas.array(["a", "b"], dtype="string[pyarrow]"), - }, - { - "C": pandas.array(["xx", "yy", "zz"], dtype="string[pyarrow]"), - "D": pandas.array(["aa", "bb", "cc"], dtype="string[pyarrow]"), - }, - { - "C": pandas.array( - ["x", "y", "xx", "yy", "zz"], dtype="string[pyarrow]" - ), - "D": pandas.array( - ["a", "b", "aa", "bb", "cc"], dtype="string[pyarrow]" - ), - }, + {"C": ["x", "y"], "D": ["a", "b"]}, + {"C": ["xx", "yy", "zz"], "D": ["aa", "bb", "cc"]}, + {"C": ["x", "y", "xx", "yy", "zz"], "D": ["a", "b", "aa", "bb", "cc"]}, ), ], ) @@ -559,4 +546,4 @@ def test_append_partition( df3 = pandas.DataFrame(expected_file) - assert_frame_equal(x.read(), df3, check_dtype=True) + assert_frame_equal(x.read(), df3, check_dtype=False)