From 0c7fdc701382a577b3f22911d093dde99c60435f Mon Sep 17 00:00:00 2001 From: Veronica Berglyd Olsen <1619840+vkbo@users.noreply.github.com> Date: Wed, 9 Nov 2022 22:51:12 +0100 Subject: [PATCH] Fix windows vs posix path issue in test --- tests/test_dialogs/test_dlg_preferences.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_dialogs/test_dlg_preferences.py b/tests/test_dialogs/test_dlg_preferences.py index fbf9af9b..193987f4 100644 --- a/tests/test_dialogs/test_dlg_preferences.py +++ b/tests/test_dialogs/test_dlg_preferences.py @@ -225,7 +225,7 @@ def testDlgPreferences_Main(qtbot, monkeypatch, nwGUI, fncPath, tstPaths): ignTuple = ( "timestamp", "guifont", "lastnotes", "guilang", "geometry", "preferences", "projcols", "mainpane", "docpane", "viewpane", - "outlinepane", "textfont", "textsize", "lastpath" + "outlinepane", "textfont", "textsize", "lastpath", "backuppath" ) assert cmpFiles(testFile, compFile, ignoreStart=ignTuple)