Skip to content

Commit cceb9da

Browse files
authored
Update pandas/tests/strings/test_strings.py
1 parent adc32b8 commit cceb9da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/strings/test_strings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -783,7 +783,7 @@ def test_series_str_decode():
783783

784784
def test_decode_with_dtype_none():
785785
with option_context("future.infer_string", True):
786-
ser = Series([b"a", b"b", b"c"]) # Use byte strings
786+
ser = Series([b"a", b"b", b"c"])
787787
result = ser.str.decode("utf-8", dtype=None)
788788
expected = Series(["a", "b", "c"], dtype="str")
789789
tm.assert_series_equal(result, expected)

0 commit comments

Comments
 (0)