diff --git a/tests/test_core/test_core_spell.py b/tests/test_core/test_core_spell.py index 90ef0fff..46ee1937 100644 --- a/tests/test_core/test_core_spell.py +++ b/tests/test_core/test_core_spell.py @@ -145,7 +145,7 @@ def testCoreSpell_Simple(monkeypatch, tmpDir, tmpConf): # Load dictionary properly spChk.setLanguage("en", wList) assert spChk.projDict == ["a_word", "b_word", "c_word"] - assert spChk.theWords == set(["e_word", "f_word", "g_word", "a_word", "b_word", "c_word"]) + assert spChk.theWords == {"e_word", "f_word", "g_word", "a_word", "b_word", "c_word"} # Check words assert spChk.checkWord("a_word")