Skip to content

Commit

Permalink
Fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
HardNorth committed Dec 19, 2024
1 parent 3a015ae commit 25c402f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/logs/test_rp_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from reportportal_client.core.rp_file import RPFile


@pytest.mark.parametrize(["name"], [[""], [None], [" "]])
@pytest.mark.parametrize(["name"], [("",), (None,), (" ",)])
def test_rp_file_name_should_not_be_empty(name):
file = RPFile(name, b'{"test": true}', "application/json")

Expand Down

0 comments on commit 25c402f

Please sign in to comment.