Skip to content

Commit

Permalink
Fix logging statement in test run function (#1220)
Browse files Browse the repository at this point in the history
  • Loading branch information
tjni authored Oct 6, 2024
1 parent ec368e2 commit 4cf74be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/helpers/rest.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ def run(self, url, meta, tmpdir, mock_request, mock_post, mock_get):

if not isinstance(obj, instance):
print('%s instantiated %s (but expected %s)' % (
url, type(instance), type(obj)))
url, type(obj), instance))
assert False

if isinstance(obj, NotifyBase):
Expand Down

0 comments on commit 4cf74be

Please sign in to comment.