Skip to content

Commit 2d19a8c

Browse files
committed
Fix tests
1 parent d1e814d commit 2d19a8c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/units/test_config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,11 +174,11 @@ def test_read_config_default_values(mock_cp):
174174
expect(cfg.api_key is None)
175175
expect(cfg.project is None)
176176
expect(cfg.launch_name == DEFAULT_LAUNCH_NAME)
177-
expect(cfg.debug_mode is False)
177+
expect(cfg.debug_mode is None)
178178
expect(cfg.log_layout is LogLayout.SCENARIO)
179179
expect(cfg.launch_attributes is None)
180180
expect(cfg.launch_description is None)
181-
expect(cfg.is_skipped_an_issue is False)
181+
expect(cfg.is_skipped_an_issue is True)
182182
expect(cfg.retries is None)
183183
expect(cfg.rerun is False)
184184
expect(cfg.rerun_of is None)

0 commit comments

Comments
 (0)