Skip to content

Commit

Permalink
Revert faulty replace all
Browse files Browse the repository at this point in the history
  • Loading branch information
pagmatt committed Jan 27, 2023
1 parent b6345fe commit 36217ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,14 +115,14 @@ def result(config):
@pytest.fixture(scope='function')
def parameter_combination_no_rngrun():
# We need to explicitly state we want an OrderedDict here in order to
# support python3 < 3.6 - since python3 3.6, dicts are ordered by default
# support Python < 3.6 - since Python 3.6, dicts are ordered by default
return collections.OrderedDict([('dict', '/usr/share/dict/american-english'),
('time', False)])

@pytest.fixture(scope='function')
def parameter_combination():
# We need to explicitly state we want an OrderedDict here in order to
# support python3 < 3.6 - since python3 3.6, dicts are ordered by default
# support Python < 3.6 - since Python 3.6, dicts are ordered by default
return collections.OrderedDict([('dict', '/usr/share/dict/american-english'),
('time', False),
('RngRun', '0')])
Expand Down

0 comments on commit 36217ff

Please sign in to comment.