fail fast

pull/642/merge
Darien Raymond 2017-10-20 23:54:07 +02:00
parent 1c29d1535c
commit afe190316d
1 changed files with 1 additions and 2 deletions

View File

@ -19,8 +19,7 @@ type Assert struct {
}
func (v *Assert) Fail(message string) {
fmt.Println(decorate(message))
v.t.Fail()
v.t.Fatal(decorate(message))
}
func getCaller() (string, int) {