Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
Strip trailing whitespace from ssconvert(1) output to support gnumeric 1.12.43.
· 255cbe59
Chris Lamb
authored
Sep 25, 2018
255cbe59
Drop extra whitespace.
· 3c4046e0
Chris Lamb
authored
Sep 30, 2018
3c4046e0
Hide whitespace changes
Inline
Side-by-side
diffoscope/comparators/gnumeric.py
View file @
3c4046e0
...
...
@@ -61,4 +61,4 @@ class GnumericFile(File):
))
with
open
(
t
.
name
)
as
f
:
return
f
.
read
()
return
f
.
read
()
.
strip
()
tests/comparators/test_gnumeric.py
View file @
3c4046e0
...
...
@@ -65,7 +65,6 @@ def test_diff_new(differences):
assert
differences
[
0
].
unified_diff
==
expected_diff
@skip_unless_tools_exist
(
'
ssconvert
'
)
def
test_compare_non_existing
(
monkeypatch
,
gnumeric1
):
assert_non_existing
(
monkeypatch
,
gnumeric1
,
has_null_source
=
False
)