Don't check for .zotero-ft-info in test

No longer created
This commit is contained in:
Dan Stillman 2023-04-27 03:48:39 -04:00
parent f95a6d0f0a
commit 43ba4c3620

View file

@ -78,7 +78,6 @@ describe("Zotero.FullText", function () {
var item = yield Zotero.Attachments.linkFromFile({ file: linkedFile });
var storageDir = Zotero.Attachments.getStorageDirectory(item).path;
assert.isTrue(yield OS.File.exists(storageDir));
assert.isTrue(yield OS.File.exists(OS.Path.join(storageDir, '.zotero-ft-info')));
assert.isTrue(yield OS.File.exists(OS.Path.join(storageDir, '.zotero-ft-cache')));
assert.isFalse(yield OS.File.exists(OS.Path.join(storageDir, filename)));
});