0.2.0 #9

Manually merged
xdrm-brackets merged 43 commits from 0.2.0 into master 2020-03-08 15:28:42 +00:00
1 changed files with 7 additions and 1 deletions
Showing only changes of commit 45675713e7 - Show all commits

View File

@ -106,7 +106,13 @@ func TestJsonPrimitiveBool(t *testing.T) {
}
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()
}
})