2009/3/17 Jérôme Laheurte <[email protected]>:
> BTW, there's a bunch of effort-related unit tests failing in Trunk
> though the release branch seems fine. Was this fixed in the release
> branch or introduced in trunk ?
I just checked: I'm positive I fixed these tests on Fedora.
The asserts look like this one:
self.assertEqual(self.task2, list(self.effortAggregator)[0].task())
So I suspect list() returns different orders on different platforms.
We'll need to make these order-independent, something like:
self.failUnless(self.task2 in [effort.task() for effort in
self.effortAggregator])
Cheers, Frank