mirror of
https://github.com/certbot/certbot.git
synced 2026-05-28 04:34:11 -04:00
test using os.path.sep not hardcoded / (#3920)
This commit is contained in:
parent
27525fb205
commit
16361bfd06
1 changed files with 1 additions and 1 deletions
|
|
@ -383,7 +383,7 @@ class RenameLineageTest(BaseCertManagerTest):
|
|||
mock_config.new_certname = "example.org"
|
||||
self.assertRaises(errors.ConfigurationError, self._call, mock_config)
|
||||
|
||||
mock_config.new_certname = "one/two"
|
||||
mock_config.new_certname = "one{0}two".format(os.path.sep)
|
||||
self.assertRaises(errors.ConfigurationError, self._call, mock_config)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue