From 20bb2e7ac54ecd0fd22d13aac3a3890da19d2d63 Mon Sep 17 00:00:00 2001 From: Giampaolo Rodola Date: Sat, 28 Oct 2017 19:44:04 +0200 Subject: [PATCH] give CREDITS to @adpag for #1159, #1160 and #1161 --- CREDITS | 4 ++++ psutil/tests/test_unicode.py | 4 +++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CREDITS b/CREDITS index b54fac21b..f6e2b1991 100644 --- a/CREDITS +++ b/CREDITS @@ -503,3 +503,7 @@ I: 1127 N: Akos Kiss W: https://github.com/akosthekiss I: 1150 + +N: Adrian Page +W: https://github.com/adpag +I: 1159, 1160, 1161 diff --git a/psutil/tests/test_unicode.py b/psutil/tests/test_unicode.py index 4e2289bf0..e491d3dc7 100755 --- a/psutil/tests/test_unicode.py +++ b/psutil/tests/test_unicode.py @@ -335,6 +335,9 @@ def test_name_type(self): class TestNonFSAPIS(unittest.TestCase): """Unicode tests for non fs-related APIs.""" + def tearDown(self): + reap_children() + @unittest.skipIf(not HAS_ENVIRON, "not supported") def test_proc_environ(self): # Note: differently from others, this test does not deal @@ -352,7 +355,6 @@ def test_proc_environ(self): self.assertIsInstance(k, str) self.assertIsInstance(v, str) self.assertEqual(env['FUNNY_ARG'], funky_str) - reap_children() if __name__ == '__main__':