File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 2424public class MavenTest {
2525
2626 // Define the timeout for each test
27- private static final Duration TEST_TIMEOUT = Duration .ofSeconds (3 );
27+ private static final Duration TEST_TIMEOUT = Duration .ofSeconds (2 );
2828
2929 // Regex pattern to match "p" followed by only digits
3030 private static final Pattern PROBLEM_DIR_PATTERN = Pattern .compile ("p\\ d+" );
3131
3232 // Define a skip list for problems to exclude
3333 private static final Set <String > SKIP_PROBLEMS = new HashSet <>(Arrays .asList (
34- "p10009" // Add problems to skip here
35- ));
34+ "p10009" , // Add problems to skip here
35+ "p640" ));
3636
3737 // Method to dynamically discover problem names
3838 private static List <String > discoverProblemNames () {
You can’t perform that action at this time.
0 commit comments