• 
      

    Don't use assertListEqual in unit tests

    Review Request #7041 — Created March 10, 2015 and submitted — Latest diff uploaded

    Information

    RBTools
    release-0.7.x
    52be0f2...

    Reviewers

    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.