Details
-
Bug
-
Status: Closed
-
Trivial
-
Resolution: Fixed
-
None
-
None
-
Patch Available
Description
The go test server printf()s bools with wrong formatting:
testBool(%!d(bool=true)) testBool(%!d(bool=false))
while this is expected:
testBool(true) testBool(false)