diff --git a/tests/unit/config/test_configfiles.py b/tests/unit/config/test_configfiles.py index 116d305d3..101b883cd 100644 --- a/tests/unit/config/test_configfiles.py +++ b/tests/unit/config/test_configfiles.py @@ -172,7 +172,8 @@ class TestYaml: def test_merge_persist_false(self, monkeypatch, yaml, config_tmpdir): """Migration of tabs.persist_mode_on_change: False.""" autoconfig = config_tmpdir / 'autoconfig.yml' - autoconfig.write_text('global:\n tabs.persist_mode_on_change: False', encoding='utf-8') + autoconfig.write_text('global:\n tabs.persist_mode_on_change: False', + encoding='utf-8') yaml.load() yaml._save() @@ -184,7 +185,8 @@ class TestYaml: def test_merge_persist_true(self, monkeypatch, yaml, config_tmpdir): """Migration of tabs.persist_mode_on_change: True.""" autoconfig = config_tmpdir / 'autoconfig.yml' - autoconfig.write_text('global:\n tabs.persist_mode_on_change: True', encoding='utf-8') + autoconfig.write_text('global:\n tabs.persist_mode_on_change: True', + encoding='utf-8') yaml.load() yaml._save()