Making panic level assertions more helpful
diff --git a/entry_test.go b/entry_test.go
index 2ad192e..98717df 100644
--- a/entry_test.go
+++ b/entry_test.go
@@ -20,7 +20,7 @@
 			assert.Equal(t, "kaboom", pVal.Message)
 			assert.Equal(t, errBoom, pVal.Data["err"])
 		default:
-			t.Fatal()
+			t.Fatalf("want type *Entry, got %T: %#v", pVal, pVal)
 		}
 	}()
 
@@ -42,7 +42,7 @@
 			assert.Equal(t, "kaboom true", pVal.Message)
 			assert.Equal(t, errBoom, pVal.Data["err"])
 		default:
-			t.Fatal()
+			t.Fatalf("want type *Entry, got %T: %#v", pVal, pVal)
 		}
 	}()