Skip to content

Commit 164b4fd

Browse files
committed
cleanup
1 parent 03da2e8 commit 164b4fd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/unit/datasets/test_demo.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,15 +143,15 @@ def test__download(mock_list, mock_get_data_from_bucket):
143143
)
144144

145145
# Run
146-
data, metadata_bytes = _download(
146+
data_io, metadata_bytes = _download(
147147
'single_table',
148148
'ring',
149149
bucket='sdv-datasets-public',
150150
credentials=None,
151151
)
152152

153153
# Assert
154-
assert isinstance(data, io.BytesIO)
154+
assert isinstance(data_io, io.BytesIO)
155155
assert isinstance(metadata_bytes, (bytes, bytearray))
156156

157157

0 commit comments

Comments
 (0)