Don't highlight tags in inactive files

This commit is contained in:
Veronica Berglyd Olsen
2024-02-03 17:00:27 +01:00
parent 0a1c5b20ed
commit e78545fcdb
3 changed files with 15 additions and 11 deletions
+4
View File
@@ -294,6 +294,10 @@ def testCoreIndex_CheckThese(mockGUI, fncPath, mockRnd):
assert index.parseValue("Jane | Jane Smith") == ("Jane", "Jane Smith")
assert index.parseValue("Jane | Jane Smith") == ("Jane", "Jane Smith")
# Duplicates with Display Name
assert index.checkThese(["@tag", "Jane | Jane Doe"], cHandle) == [True, True]
assert index.checkThese(["@tag", "Jane | Jane Smith"], nHandle) == [True, False]
project.closeProject()
# END Test testCoreIndex_CheckThese