From 470002ec13f83ca4aeec19da137037846bd5da2f Mon Sep 17 00:00:00 2001 From: Jack Christensen Date: Sat, 13 Feb 2016 12:12:01 -0600 Subject: [PATCH] Fix test of *Tx.AfterClose order --- tx_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tx_test.go b/tx_test.go index 3e76d77c..bc8faf5a 100644 --- a/tx_test.go +++ b/tx_test.go @@ -146,7 +146,7 @@ func TestTxAfterClose(t *testing.T) { t.Error("Second Tx.AfterClose callback not called") } - if t1.After(t2) { - t.Error("AfterClose callbacks called out of order: %v, %v", t1, t2) + if t1.Before(t2) { + t.Errorf("AfterClose callbacks called out of order: %v, %v", t1, t2) } }