diff options
author | alalazo <massimiliano.culpo@googlemail.com> | 2016-03-15 16:59:29 +0100 |
---|---|---|
committer | alalazo <massimiliano.culpo@googlemail.com> | 2016-03-15 16:59:29 +0100 |
commit | c8cc6f4fc111d5dd2d55295e569a10cd5739ceee (patch) | |
tree | 1bd8e5610a40e224e5754c2b47a36c7add8769d7 /lib | |
parent | ccced9f290bc213561209db2479bccfb5605366d (diff) | |
download | spack-c8cc6f4fc111d5dd2d55295e569a10cd5739ceee.tar.gz spack-c8cc6f4fc111d5dd2d55295e569a10cd5739ceee.tar.bz2 spack-c8cc6f4fc111d5dd2d55295e569a10cd5739ceee.tar.xz spack-c8cc6f4fc111d5dd2d55295e569a10cd5739ceee.zip |
test : fix for python 2.6
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/test/environment.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/test/environment.py b/lib/spack/spack/test/environment.py index 97581ecb76..f44282d6f3 100644 --- a/lib/spack/spack/test/environment.py +++ b/lib/spack/spack/test/environment.py @@ -62,4 +62,4 @@ class EnvironmentTest(unittest.TestCase): copy_construct = EnvironmentModifications(env) self.assertEqual(len(copy_construct), 2) for x, y in zip(env, copy_construct): - self.assertIs(x, y) + assert x is y |