Skip to content

Commit

Permalink
Address nose tests deprecation issues
Browse files Browse the repository at this point in the history
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().
  • Loading branch information
rtamalin committed Feb 1, 2024
1 parent 7f97126 commit 036bae1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/defaults_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


class TestDefaults(object):
def setup(self):
def setup_method(self):
self.defaults = Defaults()

def test_get_migration_config_file(self):
Expand Down

0 comments on commit 036bae1

Please sign in to comment.