From 36217ffcd0eccf3e35cea95ff060d97174cd89e1 Mon Sep 17 00:00:00 2001 From: Pagin Matteo Date: Wed, 25 Jan 2023 15:40:53 +0100 Subject: [PATCH] Revert faulty replace all --- tests/conftest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index 9720bd0..4cbbe60 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -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')])