From dfcabab2cbb4ae1a2a568fec183d325a0b74807c Mon Sep 17 00:00:00 2001 From: Renaud Chaput Date: Wed, 23 Apr 2025 09:36:11 +0200 Subject: [PATCH] Fix theme spec failures The default theme file is now `application-*.css` --- spec/helpers/theme_helper_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/helpers/theme_helper_spec.rb b/spec/helpers/theme_helper_spec.rb index 51611b82112..337536878f9 100644 --- a/spec/helpers/theme_helper_spec.rb +++ b/spec/helpers/theme_helper_spec.rb @@ -17,7 +17,7 @@ RSpec.describe ThemeHelper do ) expect(html_links.last.attributes.symbolize_keys) .to include( - href: have_attributes(value: match(/default/)), + href: have_attributes(value: match(/application/)), media: have_attributes(value: '(prefers-color-scheme: dark)') ) end