Skip to content

Commit

Permalink
👽 Accept log without :
Browse files Browse the repository at this point in the history
  • Loading branch information
shnizzedy committed Aug 18, 2023
1 parent c654df9 commit 6b406dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_cpac.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def run_test(argv):
with mock.patch.object(sys, 'argv', argv):
run()
captured = capsys.readouterr()
checkstring = f':{tag}' if tag is not None else ':latest'
checkstring = f'{tag}' if tag is not None else 'latest'
outstring = captured.out + captured.err
assert checkstring in outstring or 'cached' in outstring

Expand Down

0 comments on commit 6b406dd

Please sign in to comment.