Skip to content

Commit

Permalink
Make the test test what it should test
Browse files Browse the repository at this point in the history
  • Loading branch information
fabapp2 committed Nov 7, 2023
1 parent 1199e88 commit 935efd8
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ public class MavenRepositoryLocalRepoTest {
@ExpectedToFail
void calculateLocalMavenRepository() {
String repoPath = System.getProperty("user.home") + "/.m2/repository";
MavenRepository MAVEN_LOCAL_DEFAULT = new MavenRepository("local", new File(repoPath).toURI().toString(), "true", "true", true, null, null, false);
assertThat(MAVEN_LOCAL_DEFAULT.getUri()).isEqualTo("file://" + repoPath.toString());
assertThat(MavenRepository.MAVEN_LOCAL_DEFAULT.getUri()).isEqualTo("file://" + repoPath.toString());
}
}

0 comments on commit 935efd8

Please sign in to comment.