Skip to content

Commit

Permalink
Update to Bootstrap 5.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
larsgrefer committed Apr 21, 2022
1 parent 6d2b955 commit 9b7d8e9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ void compileScssUrl() throws IOException, SassCompilationFailedException {

@Test
void compileClasspathUrl() throws IOException, SassCompilationFailedException {
URL resource = getClass().getResource("/META-INF/resources/webjars/bootstrap/5.1.1/scss/bootstrap.scss");
URL resource = getClass().getResource("/META-INF/resources/webjars/bootstrap/5.1.3/scss/bootstrap.scss");

CompileSuccess compileSuccess = sassCompiler.compile(resource);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ void interClasspathImport() throws SassCompilationFailedException, IOException {

@Test
void interClasspathImport_fromJar() throws SassCompilationFailedException, IOException {
String css = sassCompiler.compileScssString("@import 'META-INF/resources/webjars/bootstrap/5.1.1/scss/bootstrap.scss';").getCss();
String css = sassCompiler.compileScssString("@import 'META-INF/resources/webjars/bootstrap/5.1.3/scss/bootstrap.scss';").getCss();

assertThat(css).contains("green");
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ void canonicalizeToImport() throws Exception {

@Test
void canonicalizeToImport_jar() throws Exception {
String canonicalize = classpathImporter.canonicalize("META-INF/resources/webjars/bootstrap/5.1.1/scss/bootstrap.scss", false);
String canonicalize = classpathImporter.canonicalize("META-INF/resources/webjars/bootstrap/5.1.3/scss/bootstrap.scss", false);

assertThat(canonicalize).isNotNull();

Expand Down

0 comments on commit 9b7d8e9

Please sign in to comment.