Skip to content

Commit f324483

Browse files
committed
Fix some bugs in the tests.
1 parent 6e53b74 commit f324483

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_fs.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def test_read_full(path, mode, use_threads):
7878

7979
@pytest.mark.parametrize("use_threads", [True, False])
8080
@pytest.mark.parametrize("mode", ["r", "rb"])
81-
@pytest.mark.parametrize("block_size", [100, 2])
81+
@pytest.mark.parametrize("block_size", [100, 3])
8282
def test_read_chunked(path, mode, block_size, use_threads):
8383
client_s3 = boto3.client("s3")
8484
path = f"{path}0.txt"
@@ -99,7 +99,7 @@ def test_read_chunked(path, mode, block_size, use_threads):
9999

100100
@pytest.mark.parametrize("use_threads", [True, False])
101101
@pytest.mark.parametrize("mode", ["r", "rb"])
102-
@pytest.mark.parametrize("block_size", [2, 3, 10, 23, 48, 65, 100])
102+
@pytest.mark.parametrize("block_size", [3, 10, 23, 48, 65, 100])
103103
def test_read_line(path, mode, block_size, use_threads):
104104
client_s3 = boto3.client("s3")
105105
path = f"{path}0.txt"
@@ -191,7 +191,7 @@ def test_pyarrow(path, glue_table, glue_database):
191191

192192

193193
@pytest.mark.parametrize("use_threads", [True, False])
194-
@pytest.mark.parametrize("block_size", [2, 3, 5, 8, 9, 15])
194+
@pytest.mark.parametrize("block_size", [3, 5, 8, 9, 15])
195195
@pytest.mark.parametrize("text", ["012345678", "0123456789"])
196196
def test_cache(path, use_threads, block_size, text):
197197
client_s3 = boto3.client("s3")

0 commit comments

Comments
 (0)