Skip to content

Commit

Permalink
fix syntool converter tests
Browse files Browse the repository at this point in the history
  • Loading branch information
aperrin66 committed Oct 16, 2024
1 parent 825c344 commit bafd697
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/converters/test_syntool_converters.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def test_parse_converter_options(self):
result = converter.parse_converter_options({
'converter_options': {'quux': 'corge'}
})
self.assertListEqual(result, ['-opt', 'quux=corge', 'bar=baz'])
self.assertListEqual(result, ['-opt', 'bar=baz', 'quux=corge'])

def test_parse_converter_options_no_default(self):
"""Test parsing converter options when the converter does not
Expand Down Expand Up @@ -206,7 +206,7 @@ def test_parse_converter_args(self):
ingest_parameter_files='qux')
self.assertListEqual(
converter.parse_converter_args({'converter_options': {'ham': 'egg'}}),
['-t', 'foo', '-opt', 'ham=egg', 'bar=baz'])
['-t', 'foo', '-opt', 'bar=baz', 'ham=egg'])

def test_run(self):
"""Test running the conversion and ingestion"""
Expand Down

0 comments on commit bafd697

Please sign in to comment.