Merge branch '5633/connection_validation' of github.com:influxdata/chronograf into 5633/connection_validation

pull/5634/head
Pavel Zavora 2020-12-09 20:48:17 +01:00
commit 3fed675c29
1 changed files with 2 additions and 2 deletions

View File

@ -574,7 +574,7 @@ func Test_Influx_ValidateAuth_V1(t *testing.T) {
t.Errorf("Expected client error '%v' to contain server-sent error message", err)
}
if called == false {
t.Error("Expected http request to Influx but there was none")
t.Error("Expected http request to InfluxDB but there was none")
}
}
@ -614,6 +614,6 @@ func Test_Influx_ValidateAuth_V2(t *testing.T) {
t.Errorf("Expected client error '%v' to contain server-sent error message", err)
}
if called == false {
t.Error("Expected http request to Influx but there was none")
t.Error("Expected http request to InfluxDB but there was none")
}
}