diff options
-rw-r--r-- | SCons/UtilTests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/SCons/UtilTests.py b/SCons/UtilTests.py index 0bd542d..817ad02 100644 --- a/SCons/UtilTests.py +++ b/SCons/UtilTests.py @@ -21,12 +21,12 @@ # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -from collections import UserDict, UserList, UserString import functools import io import os import sys import unittest +from collections import UserDict, UserList, UserString import TestCmd @@ -718,7 +718,7 @@ class UtilTestCase(unittest.TestCase): # Verify that the odd case when library name is specified as 'lib' # doesn't yield lib.so, but yields the expected liblib.so r = adjustixes('PREFIX', 'PREFIX', 'SUFFIX') - assert r == 'PREFIXPREFIXSUFFIX', "Failed handling when filename = PREFIX [r='%s']"%r + assert r == 'PREFIXPREFIXSUFFIX', "Failed handling when filename = PREFIX [r='%s']" % r def test_containsAny(self): """Test the containsAny() function""" |