A simple copy-paste fix (#5130)

The test for MySQL HA backend seems to have been based on the Zookeeper one and the error message in it did not get updated to be MySQL-specific.
This commit is contained in:
Oleksiy Kovyrin
2018-08-17 08:46:56 -04:00
committed by Chris Hoffman
parent f0e5d82527
commit dd1ceaca7a

View File

@@ -102,7 +102,7 @@ func TestMySQLHABackend(t *testing.T) {
ha, ok := b.(physical.HABackend)
if !ok {
t.Fatalf("zookeeper does not implement HABackend")
t.Fatalf("MySQL does not implement HABackend")
}
physical.ExerciseHABackend(t, ha, ha)
}