💚 make unit test pass

This commit is contained in:
chfw 2018-11-26 08:10:27 +00:00
parent ce04e9e679
commit f3b2ad0510
1 changed files with 5 additions and 3 deletions

View File

@ -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():