test_uniqueArray.py: fix 'is' usage PyPy incompat
authorZac Medico <zmedico@gentoo.org>
Fri, 2 Dec 2011 02:07:21 +0000 (18:07 -0800)
committerZac Medico <zmedico@gentoo.org>
Fri, 2 Dec 2011 02:07:21 +0000 (18:07 -0800)
pym/portage/tests/util/test_uniqueArray.py

index 2a1a209298a6e144c70a97246a28ec19e683f57e..e23428c3141b74d8b71c6d9c960842cf3d20a9bc 100644 (file)
@@ -1,5 +1,5 @@
 # test_uniqueArray.py -- Portage Unit Testing Functionality
-# Copyright 2006 Gentoo Foundation
+# Copyright 2006-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 from portage import os
@@ -20,5 +20,5 @@ class UniqueArrayTestCase(TestCase):
                        result = unique_array( test[0] )
                        for item in test[1]:
                                number = result.count(item)
-                               self.assertFalse( number is not 1, msg="%s contains %s of %s, \
-                                       should be only 1" % (result, number, item) )
+                               self.assertFalse( number != 1, msg=("%s contains %s of %s, "
+                                       "should be only 1") % (result, number, item) )