Skip to content
Snippets Groups Projects
Commit c43f1b2c authored by Thomas Goirand's avatar Thomas Goirand
Browse files

Add fix-assertEqual.patch.

parent f1db7751
No related branches found
No related tags found
No related merge requests found
python-kubernetes (26.1.0-2) unstable; urgency=medium
* Uploading to unstable.
* Add fix-assertEqual.patch.
-- Thomas Goirand <zigo@debian.org> Thu, 04 Apr 2024 08:47:06 +0200
......
Description: Fix assertEqual
Author: Thomas Goirand <zigo@debian.org>
Forwarded: no
Last-Update: 2024-04-18
--- python-kubernetes-26.1.0.orig/kubernetes/base/config/kube_config_test.py
+++ python-kubernetes-26.1.0/kubernetes/base/config/kube_config_test.py
@@ -1582,7 +1582,7 @@ class TestKubeConfigLoader(BaseTestCase)
actual = _get_kube_config_loader(filename=config_file,
persist_config=True)
self.assertTrue(callable(actual._config_persister))
- self.assertEquals(actual._config_persister.__name__, "save_changes")
+ self.assertEqual(actual._config_persister.__name__, "save_changes")
def test__get_kube_config_loader_dict_no_persist(self):
expected = FakeConfig(host=TEST_HOST,
fix-assertEqual.patch
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment