Skip to content

Commit 309ce8f

Browse files
committed
fix(tests): 🐛 fix unit test assertion
1 parent edb618a commit 309ce8f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,4 +108,4 @@ def mock_validate(*args, **kwargs):
108108
assert 'skip_checks' in called_args
109109
logger.debug(f"Called args: {called_args}")
110110
# Check if the skip_checks value matches the expected value
111-
assert skip_checks_1 + skip_checks_2 == called_args['skip_checks']
111+
assert list(skip_checks_1 + skip_checks_2) == called_args['skip_checks']

0 commit comments

Comments
 (0)