Skip to content
Snippets Groups Projects
Unverified Commit 0f3ad6b0 authored by meskio's avatar meskio :tent: Committed by Kali Kaneko
Browse files

[test] the gateway IPs has changed

parent 96735142
No related branches found
No related tags found
No related merge requests found
Pipeline #27840 passed
......@@ -21,6 +21,10 @@ import (
"testing"
)
const (
gwIP = "199.58.81.145"
)
var (
privateKeyHeader = []byte("-----BEGIN RSA PRIVATE KEY-----")
certHeader = []byte("-----BEGIN CERTIFICATE-----")
......@@ -50,9 +54,9 @@ func TestGetGateways(t *testing.T) {
}
for _, gw := range gateways {
if gw.IPAddress == "5.79.86.180" {
if gw.IPAddress == gwIP {
return
}
}
t.Errorf("5.79.86.180 not in the list")
t.Errorf("%s not in the list", gwIP)
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment