Skip to content

Commit 98bde62

Browse files
committed
fix(test): correct base package path in UvaTestRunner
1 parent 8050266 commit 98bde62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/UvaTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ void testAllUvaSolutions() throws Exception {
2727
}
2828

2929
private List<Class<?>> discoverUvaSolutionClasses() throws Exception {
30-
String basePackage = "com.algorithm.solutions.uva";
30+
String basePackage = "com.lzw.solutions.uva";
3131
Path classLocation = Paths.get("target/classes", basePackage.replace('.', '/'));
3232

3333
return Files.walk(classLocation)

0 commit comments

Comments
 (0)