Skip to content

Commit fd96240

Browse files
committed
renaming single character variable
1 parent 59e0284 commit fd96240

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/io/parser/common/test_common_basic.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -827,11 +827,11 @@ def test_malformed_second_line(all_parsers):
827827

828828
def test_read_table_posargs_deprecation(all_parsers):
829829
# https://github.com/pandas-dev/pandas/issues/41485
830-
f = StringIO("a\tb\n1\t2")
830+
data = StringIO("a\tb\n1\t2")
831831
parser = all_parsers
832832
msg = (
833833
"In a future version of pandas all arguments of read_table "
834834
"except for the argument 'filepath_or_buffer' will be keyword-only"
835835
)
836836
with tm.assert_produces_warning(FutureWarning, match=msg):
837-
parser.read_table(f, " ")
837+
parser.read_table(data, " ")

0 commit comments

Comments
 (0)