aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorxoviat <xoviat@users.noreply.github.com>2017-09-07 22:02:38 -0500
committerxoviat <xoviat@users.noreply.github.com>2017-09-07 22:02:38 -0500
commit17d56d62d38b392d4abf5739eede7f9271e23310 (patch)
treecc07ca14cb274f24bc9e4052ecc9ab4591e5f5a2
parent97ddc77ed2787e67e76d090d338e1d2a67336f16 (diff)
downloadexternal_python_setuptools-17d56d62d38b392d4abf5739eede7f9271e23310.tar.gz
external_python_setuptools-17d56d62d38b392d4abf5739eede7f9271e23310.tar.bz2
external_python_setuptools-17d56d62d38b392d4abf5739eede7f9271e23310.zip
tests: pep517: fix
-rw-r--r--setuptools/tests/test_pep517.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/tests/test_pep517.py b/setuptools/tests/test_pep517.py
index b9a75dbd..263ca870 100644
--- a/setuptools/tests/test_pep517.py
+++ b/setuptools/tests/test_pep517.py
@@ -22,7 +22,7 @@ class BuildBackendBase(object):
self.backend_name = backend_name
-class BuildBackend(object):
+class BuildBackend(BuildBackendBase):
"""PEP 517 Build Backend"""
def __init__(self, *args, **kwargs):
super(BuildBackend, self).__init__(*args, **kwargs)