From f3b2ad05104524b0822a00cdbb34bf663d562a9c Mon Sep 17 00:00:00 2001 From: chfw Date: Mon, 26 Nov 2018 08:10:27 +0000 Subject: [PATCH] :green_heart: make unit test pass --- tests/test_bug_fixes.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/tests/test_bug_fixes.py b/tests/test_bug_fixes.py index 72ab370..128934a 100644 --- a/tests/test_bug_fixes.py +++ b/tests/test_bug_fixes.py @@ -116,7 +116,6 @@ def test_issue_83_ods_file_handle(): def test_pr_22(): test_file = get_fixtures("white_space.ods") data = get_data(test_file) - # OrderedDict([(u'Sheet1', [[u'paragraph with tab, space, new line']])]) eq_(data["Sheet1"][0][0], "paragraph with tab(\t), space, \nnew line") @@ -124,8 +123,11 @@ def test_issue_23(): if not IN_TRAVIS: raise SkipTest() pe.get_book( - url="https://github.com/pyexcel/pyexcel-ods/raw/master/tests/fixtures/white_space.ods" - ) # noqa: E501 + url=( + "https://github.com/pyexcel/pyexcel-ods/" + + "raw/master/tests/fixtures/white_space.ods" + ) + ) def test_issue_24():