Remove no longer needed index function

This commit is contained in:
Veronica Berglyd Olsen
2022-11-14 18:59:47 +01:00
parent ebc6654069
commit 8dbaa6bbd9
2 changed files with 0 additions and 18 deletions
-10
View File
@@ -775,16 +775,6 @@ def testCoreIndex_ExtractData(mockGUI, fncPath, mockRnd):
(f"{nHandle}:T0002", 1, "Hello World!", 22),
]
# Header Word Counts
bHandle = "0000000000000"
assert theIndex.getHandleWordCounts(bHandle) == []
assert theIndex.getHandleWordCounts(hHandle) == [("%s:T0001" % hHandle, 2)]
assert theIndex.getHandleWordCounts(sHandle) == [("%s:T0001" % sHandle, 2)]
assert theIndex.getHandleWordCounts(tHandle) == [("%s:T0001" % tHandle, 2)]
assert theIndex.getHandleWordCounts(nHandle) == [
(f"{nHandle}:T0001", 12), (f"{nHandle}:T0002", 16)
]
assert theIndex.saveIndex() is True
assert theProject.saveProject() is True
assert theProject.closeProject() is True