# HG changeset patch # User Franz Glasner # Date 1619348042 -7200 # Node ID a03a6797533bbadfec2fcc90a8f44ac1920ad030 # Parent 28aa21095a6872cda7c3b7615dd2e0132cabae4e Renumber: make room for new tests implemented in the mixin class diff -r 28aa21095a68 -r a03a6797533b tests/test.py --- a/tests/test.py Sun Apr 25 12:21:11 2021 +0200 +++ b/tests/test.py Sun Apr 25 12:54:02 2021 +0200 @@ -356,12 +356,12 @@ def setUp(self): self._load = configmix.load - def test08_identity(self): + def test0100_identity(self): cfg = configmix.ini.load(os.path.join(TESTDATADIR, "conf1.ini")) cfg2 = configmix.merge(cfg, None) self.assertEqual(id(cfg), id(cfg2)) - def test09_identity(self): + def test0101_identity(self): cfg = configmix.ini.load(os.path.join(TESTDATADIR, "conf1.ini")) cfg2 = configmix.merge(cfg, {}) self.assertEqual(id(cfg), id(cfg2)) @@ -372,12 +372,12 @@ def setUp(self): self._load = configmix.safe_load - def test08_deepcopy(self): + def test0100_deepcopy(self): cfg = configmix.ini.load(os.path.join(TESTDATADIR, "conf1.ini")) cfg2 = configmix.safe_merge(cfg, None) self.assertNotEqual(id(cfg), id(cfg2)) - def test09_deepcopy(self): + def test0101_deepcopy(self): cfg = configmix.ini.load(os.path.join(TESTDATADIR, "conf1.ini")) cfg2 = configmix.safe_merge(cfg, {}) self.assertNotEqual(id(cfg), id(cfg2))