From 6c576bbef65a5cf79ec371a5c39a9181231571ea Mon Sep 17 00:00:00 2001 From: Jack Christensen Date: Sat, 27 Jul 2013 10:37:09 -0500 Subject: [PATCH] Don't test cause of death for killed connection Different platforms have different causes of death --- connection_test.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/connection_test.go b/connection_test.go index 9165d7e5..513125f4 100644 --- a/connection_test.go +++ b/connection_test.go @@ -698,9 +698,6 @@ func TestFatalRxError(t *testing.T) { if conn.IsAlive() { t.Fatal("Connection should not be live but was") } - if conn.CauseOfDeath().Error() != "EOF" { - t.Fatalf("Connection cause of death was unexpected: %v", conn.CauseOfDeath()) - } } func TestFatalTxError(t *testing.T) {