```[illuminati pants (master)]$ git diff master di...
# development
r
Copy code
[illuminati pants (master)]$ git diff master
diff --git a/tests/python/pants_test/engine/test_fs.py b/tests/python/pants_test/engine/test_fs.py
index f364302..612c80f 100644
--- a/tests/python/pants_test/engine/test_fs.py
+++ b/tests/python/pants_test/engine/test_fs.py
@@ -37,7 +37,7 @@ class FSTestBase(SchedulerTestBase, AbstractClass):
     with self.mk_project_tree(self._original_src) as project_tree:
       scheduler = self.mk_scheduler(project_tree=project_tree)
       result = self.execute(scheduler, ftype, self.specs('', *filespecs))[0]
-      self.assertEquals(set([p.path for p in result.dependencies]), set(paths))
+      self.assertEquals(sorted([p.path for p in result.dependencies]), sorted(paths))
 
   def assert_content(self, filespecs, expected_content):
     with self.mk_project_tree(self._original_src) as project_tree: