Skip to content

Commit

Permalink
update fail message
Browse files Browse the repository at this point in the history
  • Loading branch information
disq committed Nov 22, 2023
1 parent 82c0091 commit de8f7b4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions managedplugin/registry_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ func TestRegistryJsonMarshalUnmarshal(t *testing.T) {
t.Fatal("failed to unmarshal registry:", err)
}
if registry != RegistryGrpc {
t.Fatal("expected registry to be github, but got:", registry)
t.Fatal("expected registry to be grpc, but got:", registry)
}
}

Expand All @@ -31,6 +31,6 @@ func TestRegistryYamlMarshalUnmarshal(t *testing.T) {
t.Fatal("failed to unmarshal registry:", err)
}
if registry != RegistryGrpc {
t.Fatal("expected registry to be github, but got:", registry)
t.Fatal("expected registry to be grpc, but got:", registry)
}
}
2 changes: 1 addition & 1 deletion specs/registry_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ func TestRegistryYamlMarshalUnmarshal(t *testing.T) {
t.Fatal("failed to unmarshal registry:", err)
}
if registry != RegistryGrpc {
t.Fatal("expected registry to be github, but got:", registry)
t.Fatal("expected registry to be grpc, but got:", registry)
}
}

0 comments on commit de8f7b4

Please sign in to comment.