Skip to content

Commit cd3d9a9

Browse files
committed
raise AssertionError
1 parent e749ccc commit cd3d9a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/io/test_fsspec.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,13 +293,13 @@ def test_fsspec_unified_session_properties() -> None:
293293
@pytest.mark.adls
294294
def test_fsspec_new_input_file_adls(adls_fsspec_fileio: FsspecFileIO) -> None:
295295
"""Test creating a new input file from an fsspec file-io"""
296-
assert False, "This should fail CI"
297296
filename = str(uuid.uuid4())
298297

299298
input_file = adls_fsspec_fileio.new_input(f"abfss://tests/{filename}")
300299

301300
assert isinstance(input_file, fsspec.FsspecInputFile)
302301
assert input_file.location == f"abfss://tests/{filename}"
302+
raise AssertionError
303303

304304

305305
@pytest.mark.adls

0 commit comments

Comments
 (0)