Skip to content

Commit

Permalink
Merge pull request #67 from bcgov/bugfix/broken-ci-build
Browse files Browse the repository at this point in the history
Bugfix/broken ci build
  • Loading branch information
smithkm authored Sep 17, 2024
2 parents f91d8e3 + 0e935ea commit 9fa782a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.io.TempDir;

public class ZipOutputFileResolverTest {
class ZipOutputFileResolverTest {

@TempDir
Path outputLocation;
Expand All @@ -27,11 +27,11 @@ void testZipOutputFileResolver() throws IOException {

ZipOutputFileResolver resolver = new ZipOutputFileResolver();

MatcherAssert.assertThat(resolver.toPath("file").toString(), Matchers.endsWith("vdyp-lib/vdyp-common/file"));
MatcherAssert.assertThat(resolver.toPath("file").toString(), Matchers.endsWith("lib/vdyp-common/file"));

assertThrows(UnsupportedOperationException.class, () -> resolver.resolveForInput("file"));

MatcherAssert.assertThat(resolver.toString("file"), Matchers.endsWith("vdyp-lib/vdyp-common/file"));
MatcherAssert.assertThat(resolver.toString("file"), Matchers.endsWith("lib/vdyp-common/file"));

for (int i = 0; i < 5; i++) {
OutputStream os = resolver.resolveForOutput("file" + i);
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
</properties>

<modules>
<module>vdyp-lib</module>
<module>vdyp-buildtools</module>
<module>lib</module>
<module>buildtools</module>
</modules>

<dependencyManagement>
Expand Down

0 comments on commit 9fa782a

Please sign in to comment.