Skip to content

Commit

Permalink
Fix broken test
Browse files Browse the repository at this point in the history
  • Loading branch information
sebr72 committed Nov 6, 2024
1 parent c104d8f commit 07daedc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ tests: build-builder
--volume=$(PWD)/core/build/scripts/:/src/core/build/scripts/ \
--volume=$(PWD)/core/src/test/:/src/core/src/test/ \
mapfish_print_builder \
gradle --no-parallel --exclude-task=:core:spotbugsMain --exclude-task=:core:checkstyleMain \
gradle --parallel --exclude-task=:core:spotbugsMain --exclude-task=:core:checkstyleMain \
--exclude-task=:core:spotbugsTest --exclude-task=:core:checkstyleTest \
--info :core:test :core:testCli

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
package org.mapfish.print.servlet;

import org.springframework.test.annotation.DirtiesContext;
import org.springframework.test.context.ContextConfiguration;

@ContextConfiguration(locations = {ClusteredMapPrinterServletTest.CLUSTERED_CONTEXT})
@DirtiesContext(classMode = DirtiesContext.ClassMode.AFTER_CLASS)
public class ClusteredMapPrinterServletTest extends MapPrinterServletTest {

public static final String CLUSTERED_CONTEXT =
Expand Down

0 comments on commit 07daedc

Please sign in to comment.