We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c966788 commit 69f0708Copy full SHA for 69f0708
1 file changed
tests/unit/test_utils.py
@@ -108,13 +108,3 @@ def test_case_insensitive_override(self):
108
self.assertNotIn('timeout', result_dict)
109
self.assertNotIn('MIxEd', result_dict)
110
self.assertNotIn('lower', result_dict)
111
-
112
- # Lowercase explicit overrides uppercase defaults
113
- defaults = [['WORKERS 8', 'TIMEOUT 60', 'EXTRA 1']]
114
- result = fix_modulesArgs(['/mod.so'], 'workers 4 timeout 80', defaults)
115
- result_dict = {arg.split(' ')[0]: arg for arg in result[0]}
116
- self.assertEqual(result_dict['workers'], 'workers 4')
117
- self.assertEqual(result_dict['timeout'], 'timeout 80')
118
- self.assertEqual(result_dict['EXTRA'], 'EXTRA 1')
119
- self.assertNotIn('WORKERS', result_dict)
120
- self.assertNotIn('TIMEOUT', result_dict)
0 commit comments