From 7813c5c89dcd21fe197b2be6f36fe3c217b60935 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Thu, 19 Mar 2026 13:52:36 +0100 Subject: [PATCH] tpl/tplimpl: Comment out the Vimeo simple shortcode tests See #14649 --- tpl/tplimpl/shortcodes_integration_test.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tpl/tplimpl/shortcodes_integration_test.go b/tpl/tplimpl/shortcodes_integration_test.go index 20f275249..2ee7f6dfa 100644 --- a/tpl/tplimpl/shortcodes_integration_test.go +++ b/tpl/tplimpl/shortcodes_integration_test.go @@ -474,14 +474,15 @@ Content: {{ .Content }} b.AssertFileContent("public/p3/index.html", "2b5f9cc3167d1336") // Simple mode - files = strings.ReplaceAll(files, "privacy.vimeo.simple = false", "privacy.vimeo.simple = true") + // Commented out for now, see issue #14649 + /*files = strings.ReplaceAll(files, "privacy.vimeo.simple = false", "privacy.vimeo.simple = true") b = hugolib.Test(t, files) b.AssertFileContent("public/p1/index.html", "04d861fc957ee638") // Simple mode with non-existent id files = strings.ReplaceAll(files, "{{< vimeo 55073825 >}}", "{{< vimeo __id_does_not_exist__ >}}") b = hugolib.Test(t, files, hugolib.TestOptWarn()) - b.AssertLogContains(`WARN The "vimeo" shortcode was unable to retrieve the remote data.`) + b.AssertLogContains(`WARN The "vimeo" shortcode was unable to retrieve the remote data.`)*/ } func TestXShortcodes(t *testing.T) { -- 2.39.5