Skip to content

Commit

Permalink
fix(tests): Fixed plugin name in test to be same
Browse files Browse the repository at this point in the history
  • Loading branch information
Mordred committed Nov 8, 2024
1 parent d54895f commit 19c9ad5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions certbot_plugin_websupport/dns_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,18 +27,18 @@ def setUp(self):
path = os.path.join(self.tempdir, "websupport.ini")
dns_test_common.write(
{
"websupport_api_key": FAKE_API_KEY,
"websupport_api_secret": FAKE_API_SECRET,
"dns_websupport_api_key": FAKE_API_KEY,
"dns_websupport_api_secret": FAKE_API_SECRET,
},
path,
)

super(AuthenticatorTest, self).setUp()
self.config = mock.MagicMock(
websupport_credentials=path, websupport_propagation_seconds=0
dns_websupport_credentials=path, dns_websupport_propagation_seconds=0
) # don't wait during tests

self.auth = Authenticator(self.config, "websupport")
self.auth = Authenticator(self.config, "dns-websupport")

self.mock_client = mock.MagicMock()
# _get_ispconfig_client | pylint: disable=protected-access
Expand Down

0 comments on commit 19c9ad5

Please sign in to comment.