Don't use assertListEqual in unit tests
Review Request #7041 — Created March 10, 2015 and submitted — Latest diff uploaded
The `TestCase.assertListEquals` method is only available in Python 2.7+. We support Python 2.6+, so we compare the items of lists directly instead of the lists directly.
Ran unit tests.