fixed registryEndpoint string
parent
637262cea2
commit
8b2d1ec2e6
|
@ -1,4 +1,7 @@
|
|||
{
|
||||
"Hint: This is not a URL, come on.": "",
|
||||
"Holy cow I'm in a loop!": "Something else",
|
||||
"This was a choice: %s": "Something"
|
||||
"This is a variable with a string assigned": "",
|
||||
"This was a choice: %s": "Something",
|
||||
"Wow another string: %s": ""
|
||||
}
|
|
@ -211,7 +211,7 @@ func testRegistry(t *testing.T) {
|
|||
t.Fatalf("failed to read minikubeIP: %v", err)
|
||||
}
|
||||
|
||||
registryEndpoint := "http://" + strings.TrimSpace(s) + "5000"
|
||||
registryEndpoint := "http://" + strings.TrimSpace(s) + ":5000"
|
||||
u, err := url.Parse(registryEndpoint)
|
||||
|
||||
if err != nil {
|
||||
|
|
Loading…
Reference in New Issue