[packages/python-testresources] - don't use deprecated unittest.TestCase.failIf alias removed in python 3.x; release 9
qboosh
qboosh at pld-linux.org
Sat Mar 22 12:36:41 CET 2025
commit bacb7caa1826546b2ba04fc28820e83622a28176
Author: Jakub Bogusz <qboosh at pld-linux.org>
Date: Sat Mar 22 11:42:21 2025 +0100
- don't use deprecated unittest.TestCase.failIf alias removed in python 3.x; release 9
python-testresources-tests.patch | 18 ++++++++++++++++++
python-testresources.spec | 2 +-
2 files changed, 19 insertions(+), 1 deletion(-)
---
diff --git a/python-testresources.spec b/python-testresources.spec
index 0cda295..4489e3e 100644
--- a/python-testresources.spec
+++ b/python-testresources.spec
@@ -8,7 +8,7 @@ Summary: Testresources - pyunit extension for managing expensive test resources
Summary(pl.UTF-8): Testresources - rozszerzenie pyunit do zarządzania kosztownymi zasobami dla testów
Name: python-testresources
Version: 2.0.1
-Release: 8
+Release: 9
License: Apache v2.0 or BSD
Group: Libraries/Python
#Source0Download: https://pypi.org/simple/testresources/
diff --git a/python-testresources-tests.patch b/python-testresources-tests.patch
index d4ac4d7..9d46ba9 100644
--- a/python-testresources-tests.patch
+++ b/python-testresources-tests.patch
@@ -12,3 +12,21 @@
clean:
find . -name '*.pyc' -print0 | xargs -0 rm -f
+--- testresources-2.0.1/testresources/tests/test_resourced_test_case.py.orig 2015-12-04 02:22:16.000000000 +0100
++++ testresources-2.0.1/testresources/tests/test_resourced_test_case.py 2025-03-22 11:37:50.090961915 +0100
+@@ -129,7 +129,7 @@ class TestResourcedTestCase(testtools.Te
+ self.resourced_case.resources = [("foo", self.resource_manager)]
+ self.resourced_case.setUpResources()
+ self.resourced_case.tearDownResources()
+- self.failIf(hasattr(self.resourced_case, "foo"))
++ self.assertFalse(hasattr(self.resourced_case, "foo"))
+
+ def testTearDownResourcesStopsUsingResource(self):
+ # tearDownResources records that there is one less use of each
+@@ -158,5 +158,5 @@ class TestResourcedTestCase(testtools.Te
+ self.assertEqual(self.resourced_case.foo, self.resource)
+ self.assertEqual(self.resource_manager._uses, 1)
+ self.resourced_case.tearDown()
+- self.failIf(hasattr(self.resourced_case, "foo"))
++ self.assertFalse(hasattr(self.resourced_case, "foo"))
+ self.assertEqual(self.resource_manager._uses, 0)
================================================================
---- gitweb:
http://git.pld-linux.org/gitweb.cgi/packages/python-testresources.git/commitdiff/bacb7caa1826546b2ba04fc28820e83622a28176
More information about the pld-cvs-commit
mailing list