diff --git a/pkg/standalone/bonafide/bonafide_integration_test.go b/pkg/standalone/bonafide/bonafide_integration_test.go
index 14fca05fdd7ab800e36bc23d9a95c1dd2da937ea..bea00fecd7724a160e945bb8f9bfef578f0c3b4a 100644
--- a/pkg/standalone/bonafide/bonafide_integration_test.go
+++ b/pkg/standalone/bonafide/bonafide_integration_test.go
@@ -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)
 }