aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2018-08-21 08:51:17 -0400
committerJason R. Coombs <jaraco@jaraco.com>2018-08-21 08:51:17 -0400
commitea8eab864c96a56a6e6a408c3f1864dcd7d31d07 (patch)
treeb0ecfd7df1659a4dcb509c556f3ee6f789a667a8
parent3f3b1a6fe255805ca53408377ec08e5999973714 (diff)
downloadexternal_python_setuptools-ea8eab864c96a56a6e6a408c3f1864dcd7d31d07.tar.gz
external_python_setuptools-ea8eab864c96a56a6e6a408c3f1864dcd7d31d07.tar.bz2
external_python_setuptools-ea8eab864c96a56a6e6a408c3f1864dcd7d31d07.zip
Use unicode literals throughout.
-rw-r--r--setuptools/tests/test_build_meta.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/setuptools/tests/test_build_meta.py b/setuptools/tests/test_build_meta.py
index c1be3eda..fe52fd4d 100644
--- a/setuptools/tests/test_build_meta.py
+++ b/setuptools/tests/test_build_meta.py
@@ -1,3 +1,5 @@
+from __future__ import unicode_literals
+
import os
import pytest
@@ -129,7 +131,7 @@ def test_prepare_metadata_for_build_wheel(build_backend):
def test_prepare_metadata_for_build_wheel_with_unicode(build_backend):
- dist_dir = os.path.abspath(u'pip-dist-info')
+ dist_dir = os.path.abspath('pip-dist-info')
os.makedirs(dist_dir)
dist_info = build_backend.prepare_metadata_for_build_wheel(dist_dir)