Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
laughingman7743 committed May 6, 2024
1 parent 6e0cb86 commit 98c9a89
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/pyathena/filesystem/test_s3.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,11 +265,11 @@ def test_ls_dirs(self, fs):

test_1 = fs.ls(f"{dir_}/prefix/test_1")
assert len(test_1) == 1
assert test_1[0] == f"{dir_}/prefix/test_1"
assert test_1[0] == fs._strip_protocol(f"{dir_}/prefix/test_1")

test_1_detail = fs.ls(f"{dir_}/prefix/test_1", detail=True)
assert len(test_1_detail) == 1
assert test_1_detail[0].name == f"{dir_}/prefix/test_1"
assert test_1_detail[0].name == fs._strip_protocol(f"{dir_}/prefix/test_1")
assert test_1_detail[0].size == 1

def test_info_bucket(self, fs):
Expand Down

0 comments on commit 98c9a89

Please sign in to comment.