diff options
Diffstat (limited to 'assert.go')
-rw-r--r-- | assert.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -7,6 +7,6 @@ import "fmt" // _assert will panic with a given formatted message if the given condition is false. func _assert(condition bool, msg string, v ...interface{}) { if !condition { - panic(fmt.Sprintf("assertion failed: " + msg, v...)) + panic(fmt.Sprintf("assertion failed: "+msg, v...)) } } |