mitchellh / panicwrap

panicwrap is a Go library for catching and handling panics in Go applications.
https://gist.github.com/mitchellh/90029601268e59a29e64e55bab1c5bdc
MIT License
443 stars 69 forks source link

Tests fail #10

Closed aviau closed 8 years ago

aviau commented 8 years ago

I am packaging panicwrap for Debian and I am getting this error:

--- FAIL: TestPanicWrap_panicHide (0.01s)
    panicwrap_test.go:237: didn't wrap: "--- FAIL: TestHelperProcess (0.00s)\nwrapped: 995"
=== RUN   TestPanicWrap_panicShow
--- FAIL: TestPanicWrap_panicShow (0.00s)
    panicwrap_test.go:258: didn't wrap: "--- FAIL: TestHelperProcess (0.00s)\nwrapped: 995"
=== RUN   TestPanicWrap_panicLong

Should those work?

mitchellh commented 8 years ago

I'm going to take a look at this soon! The tests should pass.

mitchellh commented 8 years ago

Fixed

aviau commented 8 years ago

Thanks!