Skip to content

Commit 4e1f7a9

Browse files
committed
Fix go sdk test
1 parent 84a8fc5 commit 4e1f7a9

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

app/src/test/java/io/apicurio/registry/storage/impl/gitops/GitTestRepositoryManager.java

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ public class GitTestRepositoryManager implements QuarkusTestResourceLifecycleMan
1313
@Override
1414
public Map<String, String> start() {
1515
testRepository = new GitTestRepository();
16-
1716
testRepository.initialize();
1817

1918
return Map.of(

go-sdk/pkg/tests/client_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ func TestAccessSystemInfo(t *testing.T) {
9090
info, err := client.System().Info().Get(context.Background(), nil)
9191
assert.Nil(t, err)
9292

93-
assert.Equal(t, "apicurio-registry", *info.GetName())
93+
assert.Equal(t, "Apicurio Registry (In Memory)", *info.GetName())
9494
}
9595

9696
func TestCreateAnArtifact(t *testing.T) {

0 commit comments

Comments
 (0)