Skip to content

Commit

Permalink
Update OpenAPIDistributionArtifactCheck.java
Browse files Browse the repository at this point in the history
  • Loading branch information
lnash94 authored Nov 18, 2024
1 parent 1a0809d commit 8f7f31a
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public void openapiAnnotationExistsTest() {
.resolve("cache")
.resolve("ballerina")
.resolve("openapi")
.resolve("2.1.0")
.resolve("2.1.1")
.resolve("bir");

Path jarPath = TEST_DISTRIBUTION_PATH
Expand All @@ -61,7 +61,7 @@ public void openapiAnnotationExistsTest() {
.resolve("cache")
.resolve("ballerina")
.resolve("openapi")
.resolve("2.1.0")
.resolve("2.1.1")
.resolve("java17");

Path breLibPath = TEST_DISTRIBUTION_PATH
Expand All @@ -83,7 +83,7 @@ public void openapiAnnotationExistsTest() {
.resolve("lib");

Assert.assertTrue(Files.exists(birPath));
Assert.assertTrue(Files.exists(jarPath.resolve("ballerina-openapi-2.1.0.jar")));
Assert.assertTrue(Files.exists(jarPath.resolve("ballerina-openapi-2.1.1.jar")));
Assert.assertNotNull(TestUtils.findFileOrDirectory(breLibPath, "openapi-cli-"));
Assert.assertNotNull(TestUtils.findFileOrDirectory(breLibPath, "openapi-validator-"));
Assert.assertNotNull(TestUtils.findFileOrDirectory(breLibPath, "ballerina-to-openapi-"));
Expand Down

0 comments on commit 8f7f31a

Please sign in to comment.