Skip to content

Commit

Permalink
Fix(testsuite): Artifact type tests, part #2
Browse files Browse the repository at this point in the history
  • Loading branch information
rkubis committed Jan 14, 2025
1 parent 0ef1ed5 commit 18f1101
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/test/java/io/apicurio/registry/systemtests/api/APITests.java
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ protected void runCreateReadUpdateDeleteTestJson(
KafkaKind kafkaKind,
boolean useKeycloak
) throws InterruptedException {
ApicurioRegistry registry = deployTestRegistry(persistenceKind, kafkaKind, useKeycloak);
ApicurioRegistry3 registry = deployTestRegistry(persistenceKind, kafkaKind, useKeycloak);

if (useKeycloak) {
CreateReadUpdateDelete.testCreateReadUpdateDelete(
Expand All @@ -81,7 +81,7 @@ protected void runCreateReadUpdateDeleteTestOpenapi(
KafkaKind kafkaKind,
boolean useKeycloak
) throws InterruptedException {
ApicurioRegistry registry = deployTestRegistry(persistenceKind, kafkaKind, useKeycloak);
ApicurioRegistry3 registry = deployTestRegistry(persistenceKind, kafkaKind, useKeycloak);

if (useKeycloak) {
CreateReadUpdateDelete.testCreateReadUpdateDelete(
Expand All @@ -101,7 +101,7 @@ protected void runCreateReadUpdateDeleteTestAsyncapi(
KafkaKind kafkaKind,
boolean useKeycloak
) throws InterruptedException {
ApicurioRegistry registry = deployTestRegistry(persistenceKind, kafkaKind, useKeycloak);
ApicurioRegistry3 registry = deployTestRegistry(persistenceKind, kafkaKind, useKeycloak);

if (useKeycloak) {
CreateReadUpdateDelete.testCreateReadUpdateDelete(
Expand All @@ -121,7 +121,7 @@ protected void runCreateReadUpdateDeleteTestGraphql(
KafkaKind kafkaKind,
boolean useKeycloak
) throws InterruptedException {
ApicurioRegistry registry = deployTestRegistry(persistenceKind, kafkaKind, useKeycloak);
ApicurioRegistry3 registry = deployTestRegistry(persistenceKind, kafkaKind, useKeycloak);

if (useKeycloak) {
CreateReadUpdateDelete.testCreateReadUpdateDelete(
Expand All @@ -141,7 +141,7 @@ protected void runCreateReadUpdateDeleteTestKconnect(
KafkaKind kafkaKind,
boolean useKeycloak
) throws InterruptedException {
ApicurioRegistry registry = deployTestRegistry(persistenceKind, kafkaKind, useKeycloak);
ApicurioRegistry3 registry = deployTestRegistry(persistenceKind, kafkaKind, useKeycloak);

if (useKeycloak) {
CreateReadUpdateDelete.testCreateReadUpdateDelete(
Expand All @@ -161,7 +161,7 @@ protected void runCreateReadUpdateDeleteTestWsdl(
KafkaKind kafkaKind,
boolean useKeycloak
) throws InterruptedException {
ApicurioRegistry registry = deployTestRegistry(persistenceKind, kafkaKind, useKeycloak);
ApicurioRegistry3 registry = deployTestRegistry(persistenceKind, kafkaKind, useKeycloak);

if (useKeycloak) {
CreateReadUpdateDelete.testCreateReadUpdateDelete(
Expand All @@ -181,7 +181,7 @@ protected void runCreateReadUpdateDeleteTestXsd(
KafkaKind kafkaKind,
boolean useKeycloak
) throws InterruptedException {
ApicurioRegistry registry = deployTestRegistry(persistenceKind, kafkaKind, useKeycloak);
ApicurioRegistry3 registry = deployTestRegistry(persistenceKind, kafkaKind, useKeycloak);

if (useKeycloak) {
CreateReadUpdateDelete.testCreateReadUpdateDelete(
Expand All @@ -201,7 +201,7 @@ protected void runCreateReadUpdateDeleteTestXml(
KafkaKind kafkaKind,
boolean useKeycloak
) throws InterruptedException {
ApicurioRegistry registry = deployTestRegistry(persistenceKind, kafkaKind, useKeycloak);
ApicurioRegistry3 registry = deployTestRegistry(persistenceKind, kafkaKind, useKeycloak);

if (useKeycloak) {
CreateReadUpdateDelete.testCreateReadUpdateDelete(
Expand Down

0 comments on commit 18f1101

Please sign in to comment.