💚 make test pass

This commit is contained in:
chfw 2018-11-27 07:33:50 +00:00
parent 8336c4d03b
commit d1cfa8852b
1 changed files with 5 additions and 2 deletions

View File

@ -98,8 +98,11 @@ def test_detect_float_value_on_custom_nan_text2():
def test_ods_write_format_conversion():
expected = ODS_WRITE_FORMAT_COVERSION[long] # noqa: F821
eq_('throw_exception', expected)
if PY2:
expected = ODS_WRITE_FORMAT_COVERSION[long] # noqa: F821
eq_('throw_exception', expected)
else:
raise SkipTest()
@raises(IntegerAccuracyLossError)