Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pandas/tests/io/parser/test_network.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ def test_read_csv_chunked_download(self, s3_resource, caplog):
with caplog.at_level(logging.DEBUG, logger="s3fs"):
read_csv("s3://pandas-test/large-file.csv", nrows=5)
# log of fetch_range (start, stop)
assert (0, 5505024) in {x.args[-2:] for x in caplog.records}
assert (0, 5505024) in (x.args[-2:] for x in caplog.records)

def test_read_s3_with_hash_in_key(self, tips_df):
# GH 25945
Expand Down