summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/sh/files/sh-1.12.9-python2-unicode-tests.patch')
-rw-r--r--dev-python/sh/files/sh-1.12.9-python2-unicode-tests.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/dev-python/sh/files/sh-1.12.9-python2-unicode-tests.patch b/dev-python/sh/files/sh-1.12.9-python2-unicode-tests.patch
deleted file mode 100644
index 230b16ae5fb1..000000000000
--- a/dev-python/sh/files/sh-1.12.9-python2-unicode-tests.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-diff --git a/test.py b/test.py
-index 78e00ab..0487594 100644
---- a/test.py
-+++ b/test.py
-@@ -502,7 +502,7 @@ for key in osx_cruft:
- print(os.environ["HERP"] + " " + str(len(os.environ)))
- """ % osx_cruft)
- out = python(py.name, _env=env).strip()
-- self.assertEqual(out, "DERP 1")
-+ self.assertEqual(out, u"DERP 12")
-
- py = create_tmp_test("""
- import os, sys
-@@ -515,7 +515,7 @@ for key in osx_cruft:
- print(sh.HERP + " " + str(len(os.environ)))
- """ % osx_cruft)
- out = python(py.name, _env=env, _cwd=THIS_DIR).strip()
-- self.assertEqual(out, "DERP 1")
-+ self.assertEqual(out, u"DERP 12")
-
-
- def test_which(self):