Skip to content

Commit

Permalink
Update error message
Browse files Browse the repository at this point in the history
  • Loading branch information
evertharmeling committed Nov 16, 2023
1 parent d82f703 commit 53cc09d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/DependencyInjection/SymfonycastsSassExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public function getConfigTreeBuilder(): TreeBuilder

return \count($filenames) !== \count($paths);
})
->thenInvalid('The root sass-paths need to end with unique filenames.')
->thenInvalid('The "root_sass" paths need to end with unique filenames.')
->end()
->defaultValue(['%kernel.project_dir%/assets/styles/app.scss'])
->end()
Expand Down
2 changes: 1 addition & 1 deletion tests/ConfigurationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,6 @@ public function testMultipleSassRootPathsWithSameFilename(): void
],
],
],
'Invalid configuration for path "symfonycasts_sass.root_sass": The root sass-paths need to end with unique filenames.');
'Invalid configuration for path "symfonycasts_sass.root_sass": The "root_sass" paths need to end with unique filenames.');
}
}

0 comments on commit 53cc09d

Please sign in to comment.