Skip to content

Commit 5e4ead1

Browse files
committed
Fix artifact util
1 parent d36ba05 commit 5e4ead1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

integration-tests/src/test/java/io/apicurio/tests/utils/ArtifactUtils.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public class ArtifactUtils {
1212

1313
public static Response getArtifact(String groupId, String artifactId, String version, int returnCode) {
1414
return
15-
BaseHttpUtils.getRequest(RestConstants.JSON, ApicurioRegistryBaseIT.getRegistryV3ApiUrl() + "/groups/" + encodeURIComponent(groupId) + "/artifacts/" + encodeURIComponent(artifactId) + "/versions/" + version, returnCode);
15+
BaseHttpUtils.getRequest(RestConstants.JSON, ApicurioRegistryBaseIT.getRegistryV3ApiUrl() + "/groups/" + encodeURIComponent(groupId) + "/artifacts/" + encodeURIComponent(artifactId) + "/versions/" + version + "/content", returnCode);
1616
}
1717

1818
public static Response createArtifact(String groupId, String artifactId, String artifact, int returnCode) {

0 commit comments

Comments
 (0)