Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scour/scour.py
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@
'yellowgreen': 'rgb(154, 205, 50)',
}

# A list of default poperties that are safe to remove
# A list of default properties that are safe to remove
#
# Sources for this list:
# https://www.w3.org/TR/SVG/propidx.html (implemented)
Expand Down
2 changes: 1 addition & 1 deletion test_scour.py
Original file line number Diff line number Diff line change
Expand Up @@ -1123,7 +1123,7 @@ def test_omit_spaces(self):
paths = doc.getElementsByTagNameNS(SVGNS, 'path')
for path in paths:
self.assertEqual(path.getAttribute('d'), 'm0 0a100 50 0 00100 50',
'Did not ommit spaces after boolean flags in elliptical arg path command')
'Did not omit spaces after boolean flags in elliptical arg path command')

def test_output_spaces_with_renderer_workaround(self):
doc = scourXmlFile('unittests/path-elliptical-flags.svg', parse_args(['--renderer-workaround']))
Expand Down