We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1e814d commit 2d19a8cCopy full SHA for 2d19a8c
1 file changed
tests/units/test_config.py
@@ -174,11 +174,11 @@ def test_read_config_default_values(mock_cp):
174
expect(cfg.api_key is None)
175
expect(cfg.project is None)
176
expect(cfg.launch_name == DEFAULT_LAUNCH_NAME)
177
- expect(cfg.debug_mode is False)
+ expect(cfg.debug_mode is None)
178
expect(cfg.log_layout is LogLayout.SCENARIO)
179
expect(cfg.launch_attributes is None)
180
expect(cfg.launch_description is None)
181
- expect(cfg.is_skipped_an_issue is False)
+ expect(cfg.is_skipped_an_issue is True)
182
expect(cfg.retries is None)
183
expect(cfg.rerun is False)
184
expect(cfg.rerun_of is None)
0 commit comments