From c9ad809b6564e8ff13cb4acc08741874a77f4ae9 Mon Sep 17 00:00:00 2001 From: Joe Reinhart Date: Wed, 4 Dec 2024 18:41:46 -0800 Subject: [PATCH] Update tests to reflect fixes to cache population function --- tests/test-obsidian.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test-obsidian.el b/tests/test-obsidian.el index b420b83..c952e81 100644 --- a/tests/test-obsidian.el +++ b/tests/test-obsidian.el @@ -313,12 +313,12 @@ key4: (it "1.md using obsidian-backlinks" (let* ((file (obsidian-file-to-absolute-path "1.md")) (count (obsidian-test--backlinks-count file))) - (expect count :to-equal 2))) + (expect count :to-equal 3))) (it "2-sub with spaces and буквы.md using obsidian-backlinks" (let* ((file (obsidian-file-to-absolute-path "2-sub with spaces and буквы.md")) (count (obsidian-test--backlinks-count file))) - (expect count :to-equal 7)))) + (expect count :to-equal 8)))) (describe "obsidian-backlinks without wiki links" (before-all (progn @@ -332,7 +332,7 @@ key4: (it "1.md using obsidian-backlinks" (let* ((file (obsidian-file-to-absolute-path "1.md")) (count (obsidian-test--backlinks-count file))) - (expect count :to-equal 1))) + (expect count :to-equal 2))) (it "2-sub with spaces and буквы.md using obsidian-backlinks" (let* ((file (obsidian-file-to-absolute-path "2-sub with spaces and буквы.md"))