Skip to content

Commit

Permalink
Update singer_sdk/testing/templates.py
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon authored Nov 30, 2024
1 parent 53b5dcb commit 3fbe4c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion singer_sdk/testing/templates.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def run(
Raises:
ValueError: if Test instance does not have `name` and `type` properties.
"""
if not self.name or not self.plugin_type:
if not self.name or not self.plugin_type: # pragma: no cover
msg = "Test must have 'name' and 'plugin_type' properties."
raise ValueError(msg)

Expand Down

0 comments on commit 3fbe4c1

Please sign in to comment.