wdm0006 / DummyRDD

A pure python mock of pyspark's RDD
http://wdm0006.github.io/DummyRDD/
BSD 3-Clause "New" or "Revised" License
27 stars 13 forks source link

Use OrderedDicts #31

Closed jcollado closed 6 years ago

jcollado commented 6 years ago

In the previous PR (#30), test cases are failing in travis for python 2.7 because expected results are not in the same order as the actual results.

Using OrderedDicts should fix the issue.

coveralls commented 6 years ago

Coverage Status

Coverage increased (+0.5%) to 78.642% when pulling 7d5346b7b1e8ff62b2c40046d4222e3dd39806f0 on jcollado:use-ordered-dicts into 50dd718c461d06e3fedaa17b5af72ed6e40a75a5 on wdm0006:master.

wdm0006 commented 6 years ago

Ah yes, that works. Thanks