frankban / quicktest

Quick helpers for testing Go applications
MIT License
529 stars 27 forks source link

avoid Fprintf with unknown format messages. #34

Closed rogpeppe closed 5 years ago

rogpeppe commented 5 years ago

When quicktest failed with a % character in the message, we get an inappropriately fmt-formatted string, so fix that by using Fprint instead of Fprintf.