Skip to content

Commit

Permalink
revert formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
WillGibson committed Nov 5, 2024
1 parent 001b974 commit 8c3e5ca
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tests/utils/test_publish_notifications.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,7 @@ def test_raises_error_when_environment_not_set(self, mock_subprocess, environmen
del os.environ[environment_variable]
with pytest.raises(ValueError) as e:
PublishNotify()
self.assertEqual(
f"'{environment_variable}' environment variable must be set",
str(e.value),
)
self.assertEqual(f"'{environment_variable}' environment variable must be set", str(e.value))

def test_sending_publish_notifications_when_notifications_off(self, mock_subprocess):
notify = PublishNotify(False)
Expand Down

0 comments on commit 8c3e5ca

Please sign in to comment.