diff --git a/tests/test_core/test_core_options.py b/tests/test_core/test_core_options.py index 6c4a3472..dba4bdea 100644 --- a/tests/test_core/test_core_options.py +++ b/tests/test_core/test_core_options.py @@ -42,15 +42,17 @@ def testCoreOptions_LoadSave(monkeypatch, mockGUI, fncPath): # Write a test file optFile = metaDir / nwFiles.OPTS_FILE optFile.write_text(json.dumps({ - "GuiProjectSettings": { - "winWidth": 570, - "winHeight": 375, - "replaceColW": 130, - "statusColW": 130, - "importColW": 130 - }, - "MockGroup": { - "mockItem": None, + "novelWriter.guiOptions": { + "GuiProjectSettings": { + "winWidth": 570, + "winHeight": 375, + "replaceColW": 130, + "statusColW": 130, + "importColW": 130 + }, + "MockGroup": { + "mockItem": None, + }, }, }), encoding="utf-8")