Skip to content

Commit

Permalink
Tests: another fix for os.listdir
Browse files Browse the repository at this point in the history
  • Loading branch information
tomer-weka committed Oct 21, 2014
1 parent aa9ee56 commit 926fd0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_remoting.py
Expand Up @@ -28,7 +28,7 @@ def test_files(self):
self.assertEqual(sorted(os.listdir(base1)), sorted(os.listdir(base2)))

rpyc.classic.download(self.conn, base2, base3)
self.assertEqual(os.listdir(base2), os.listdir(base3))
self.assertEqual(sorted(os.listdir(base2)), sorted(os.listdir(base3)))

shutil.rmtree(base)

Expand Down

0 comments on commit 926fd0b

Please sign in to comment.