From 036bae1a92be1bed5c6e765a472e0c38d756f3ca Mon Sep 17 00:00:00 2001 From: Fergal Mc Carthy Date: Thu, 1 Feb 2024 10:59:56 -0500 Subject: [PATCH] Address nose tests deprecation issues The Python 3.8 CI testing is failing with an error because we haven't addressed the nose tests support deprecation by renaming the setup() method to setup_method(). --- test/unit/defaults_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/defaults_test.py b/test/unit/defaults_test.py index 3b00d1b7..8c500e19 100644 --- a/test/unit/defaults_test.py +++ b/test/unit/defaults_test.py @@ -8,7 +8,7 @@ class TestDefaults(object): - def setup(self): + def setup_method(self): self.defaults = Defaults() def test_get_migration_config_file(self):