minor fix
This commit is contained in:
parent
e2e2441ee1
commit
b9d5cfe6b8
|
|
@ -568,11 +568,14 @@ func TestMarshal(t *testing.T) {
|
||||||
err := cluster.UnmarshalJSON(tt.marshal)
|
err := cluster.UnmarshalJSON(tt.marshal)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if tt.err == nil || err.Error() != tt.err.Error() {
|
if tt.err == nil || err.Error() != tt.err.Error() {
|
||||||
t.Errorf("Unmarshal expected error: %v, got: %v", tt.err, err)
|
t.Errorf("Backwards compatibility unmarshal expected error: %v, got: %v", tt.err, err)
|
||||||
}
|
}
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
expected, err := json.Marshal(cluster)
|
expected, err := json.Marshal(cluster)
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("Backwards compatibility marshal error: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
m, err := json.Marshal(tt.out)
|
m, err := json.Marshal(tt.out)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue