fix formatting type
This commit is contained in:
parent
0395d763d6
commit
45675713e7
|
@ -106,7 +106,13 @@ func TestJsonPrimitiveBool(t *testing.T) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if cast != tcase.BoolValue {
|
if cast != tcase.BoolValue {
|
||||||
t.Errorf("expected a value of %T, got %T", tcase.BoolValue, cast)
|
t.Errorf("expected a value of %t, got %t", tcase.BoolValue, cast)
|
||||||
|
t.FailNow()
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
t.FailNow()
|
t.FailNow()
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue