Skip to content

Commit

Permalink
address PR review
Browse files Browse the repository at this point in the history
  • Loading branch information
randytpierce committed Sep 13, 2024
1 parent c10fe37 commit bdcd31e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/vxingest/builder_common/test_unit_queries.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,11 @@ def test_get_file_list(request):
file_list = vx_ingest.get_file_list(
_statement, temp_dir_path, "21287230000[0123456789]?", "%y%j%H%f"
)
assert file_list is not None, f"{request.node.name}: file_list is None"
assert len(file_list) > 0, f"{request.node.name}: file_list is empty"
assert file_list is not None
assert len(file_list) > 0
assert (
file_list[3] > file_list[2]
), f"{request.node.name}: file_list is not reverse sorted"
), "file_list is not reverse sorted"


@pytest.mark.integration
Expand Down

0 comments on commit bdcd31e

Please sign in to comment.