diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2018-09-17 17:08:56 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2018-09-17 17:12:43 -0700 |
commit | f09a0d3853ab7848ed8cd16148ce95ff58e09e8a (patch) | |
tree | 6a74d2a064766d8b65285f3ab96516b181c00493 /tests/util.py | |
parent | 74aa8f70b48a88a2a243e58293fac74049e542a7 (diff) |
Throwing a bone to 2.0-2.3 python-2.6 support
Diffstat (limited to 'tests/util.py')
-rw-r--r-- | tests/util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/util.py b/tests/util.py index 4ca02374..c1ba4b2c 100644 --- a/tests/util.py +++ b/tests/util.py @@ -20,7 +20,7 @@ def needs_builtin(name): """ Skip decorated test if builtin name does not exist. """ - reason = "Test requires a builtin '{}'".format(name) + reason = "Test requires a builtin '{0}'".format(name) return pytest.mark.skipif(not hasattr(builtins, name), reason=reason) |