From 14dd04c0fa9e27c40b72d8593bf6193858fd3543 2015-07-25 17:29:31 From: Marin Gilles Date: 2015-07-25 17:29:31 Subject: [PATCH] test fix to try path for cwd --- diff --git a/IPython/utils/tests/test_text.py b/IPython/utils/tests/test_text.py index 6bacd50..886c707 100644 --- a/IPython/utils/tests/test_text.py +++ b/IPython/utils/tests/test_text.py @@ -180,6 +180,7 @@ def test_LSString(): lss = text.LSString("abc\ndef") nt.assert_equal(lss.l, ['abc', 'def']) nt.assert_equal(lss.s, 'abc def') + lss = text.LSString(os.getcwd()) nt.assert_is_instance(lss.p[0], path.path) def test_SList():