diff options
author | Michael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com> | 2016-09-20 18:47:21 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2016-09-20 23:06:30 +0200 |
commit | 2f06aa95e80c316989fc8f7ace1d9bda47f196b7 (patch) | |
tree | 6287fa7280359421c2f60d59e4063515a6c69502 /dev-python/SaltTesting | |
parent | sci-biology/iqpnni: fix cpp14 compilation; bug #594332 (diff) | |
download | gentoo-2f06aa95e80c316989fc8f7ace1d9bda47f196b7.tar.gz gentoo-2f06aa95e80c316989fc8f7ace1d9bda47f196b7.tar.bz2 gentoo-2f06aa95e80c316989fc8f7ace1d9bda47f196b7.zip |
dev-python/SaltTesting: remove unused patch
Closes: https://github.com/gentoo/gentoo/pull/2376
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'dev-python/SaltTesting')
-rw-r--r-- | dev-python/SaltTesting/files/SaltTesting-0.5.2-silence-DepricationWarning.patch | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/dev-python/SaltTesting/files/SaltTesting-0.5.2-silence-DepricationWarning.patch b/dev-python/SaltTesting/files/SaltTesting-0.5.2-silence-DepricationWarning.patch deleted file mode 100644 index 292a74c5c648..000000000000 --- a/dev-python/SaltTesting/files/SaltTesting-0.5.2-silence-DepricationWarning.patch +++ /dev/null @@ -1,17 +0,0 @@ ---- a/salttesting/unit.py 2013-10-24 10:57:42.000000000 +0000 -+++ b/salttesting/unit.py 2013-11-12 18:47:11.245838201 +0000 -@@ -42,10 +42,10 @@ - class TestCase(_TestCase): - - def assertEquals(self, *args, **kwargs): -- raise DeprecationWarning( -- 'The {0}() function is deprecated. Please start using {1}() ' -- 'instead.'.format('assertEquals', 'assertEqual') -- ) -+ #raise DeprecationWarning( -+ # 'The {0}() function is deprecated. Please start using {1}() ' -+ # 'instead.'.format('assertEquals', 'assertEqual') -+ #) - return _TestCase.assertEquals(self, *args, **kwargs) - - def failUnlessEqual(self, *args, **kwargs): |