0xdcarns 3 лет назад
Родитель
Сommit
df292f2fc8
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      controllers/node_test.go

+ 1 - 1
controllers/node_test.go

@@ -133,7 +133,7 @@ func TestValidateEgressGateway(t *testing.T) {
 		gateway.Interface = ""
 		err := logic.ValidateEgressGateway(gateway)
 		assert.NotNil(t, err)
-		assert.Equal(t, "Interface cannot be empty", err.Error())
+		assert.Equal(t, "interface cannot be empty", err.Error())
 	})
 	t.Run("Success", func(t *testing.T) {
 		gateway.Interface = "eth0"