Skip to content

Commit a960279

Browse files
committed
test: fix arch unit test which were not working due to typo in package name
1 parent 8b666c2 commit a960279

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/groovy/io/pillopl/library/ModularArchitectureTest.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public class ModularArchitectureTest {
2525
public static final ArchRule commons_should_not_depend_on_catalogue =
2626
noClasses()
2727
.that()
28-
.resideInAPackage("..common..")
28+
.resideInAPackage("..commons..")
2929
.should()
3030
.dependOnClassesThat()
3131
.resideInAPackage("..catalogue..");
@@ -34,7 +34,7 @@ public class ModularArchitectureTest {
3434
public static final ArchRule commons_should_not_depend_on_lending =
3535
noClasses()
3636
.that()
37-
.resideInAPackage("..common..")
37+
.resideInAPackage("..commons..")
3838
.should()
3939
.dependOnClassesThat()
4040
.resideInAPackage("..lending..");

0 commit comments

Comments
 (0)