diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2024-01-27 17:20:57 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-27 17:20:57 -0500 |
commit | cf89de0c6143369e5e6f521918ddf2c7db9e47d3 (patch) | |
tree | dca6fee12275c7936ee749a57edd57049ea9f4b4 /tests/test_config.py | |
parent | 43980e7e4f700f78100e80c45a59b7d383af0b7b (diff) | |
parent | d71046151d9904df467ff72709585cde39cdd4ca (diff) |
Merge pull request #2349 from paramiko/alex-patch-1
Use pytest's setup_method -- in pytest 8 the nose method setup is deprecated
Diffstat (limited to 'tests/test_config.py')
-rw-r--r-- | tests/test_config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_config.py b/tests/test_config.py index 2e49aa3d..1e623e0a 100644 --- a/tests/test_config.py +++ b/tests/test_config.py @@ -53,7 +53,7 @@ def load_config(name): class TestSSHConfig: - def setup(self): + def setup_method(self): self.config = load_config("robey") def test_init(self): |