# 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
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) )