[py-svn] r37040 - py/dist/py/test/rsession/testing
cfbolz at codespeak.net
cfbolz at codespeak.net
Fri Jan 19 22:59:48 CET 2007
Author: cfbolz
Date: Fri Jan 19 22:59:47 2007
New Revision: 37040
Modified:
py/dist/py/test/rsession/testing/test_rsession.py
Log:
2.3 compatibility
Modified: py/dist/py/test/rsession/testing/test_rsession.py
==============================================================================
--- py/dist/py/test/rsession/testing/test_rsession.py (original)
+++ py/dist/py/test/rsession/testing/test_rsession.py Fri Jan 19 22:59:47 2007
@@ -283,7 +283,8 @@
def test_sophisticated_parse(self):
sshhosts = ['a at h1:/tmp', 'h2:tmp', 'h3']
dirs = parse_directories(sshhosts)
- assert sorted(dirs.values()) == ['/tmp', 'pytestcache', 'tmp']
+ assert py.magic.builtin.sorted(
+ dirs.values()) == ['/tmp', 'pytestcache', 'tmp']
def test_parse_multiple_hosts(self):
hosts = ['h1', 'h1', 'h1:/tmp']
More information about the py-svn
mailing list