mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-11-03 20:17:59 +00:00
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:
committed by
Chris Hoffman
parent
f0e5d82527
commit
dd1ceaca7a
@@ -102,7 +102,7 @@ func TestMySQLHABackend(t *testing.T) {
|
|||||||
|
|
||||||
ha, ok := b.(physical.HABackend)
|
ha, ok := b.(physical.HABackend)
|
||||||
if !ok {
|
if !ok {
|
||||||
t.Fatalf("zookeeper does not implement HABackend")
|
t.Fatalf("MySQL does not implement HABackend")
|
||||||
}
|
}
|
||||||
physical.ExerciseHABackend(t, ha, ha)
|
physical.ExerciseHABackend(t, ha, ha)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user