From 4181c2cd87d2c9f9ab78b592aa1e51b985fdb5ee Mon Sep 17 00:00:00 2001 From: Kevin Jiang Date: Tue, 9 Sep 2025 20:30:16 +1200 Subject: [PATCH] test(integration): use proper error message in test --- internal/integration/wallabag/wallabag_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/integration/wallabag/wallabag_test.go b/internal/integration/wallabag/wallabag_test.go index c74c04db..bdca44dd 100644 --- a/internal/integration/wallabag/wallabag_test.go +++ b/internal/integration/wallabag/wallabag_test.go @@ -138,7 +138,7 @@ func TestCreateEntry(t *testing.T) { t.Errorf("Expected entryTitle %s, got %s", entryTitle, requestEntryTitle) } if requestEntryContent := req["content"]; requestEntryContent != entryContent { - t.Errorf("Expected entryURL %s, got %s", entryContent, requestEntryContent) + t.Errorf("Expected entryContent %s, got %s", entryContent, requestEntryContent) } if requestTags := req["tags"]; requestTags != tags { t.Errorf("Expected tags %s, got %s", tags, requestTags)