Fix test of *Tx.AfterClose order

pull/120/head
Jack Christensen 2016-02-13 12:12:01 -06:00
parent 593ab9fde2
commit 470002ec13
1 changed files with 2 additions and 2 deletions

View File

@ -146,7 +146,7 @@ func TestTxAfterClose(t *testing.T) {
t.Error("Second Tx.AfterClose callback not called") t.Error("Second Tx.AfterClose callback not called")
} }
if t1.After(t2) { if t1.Before(t2) {
t.Error("AfterClose callbacks called out of order: %v, %v", t1, t2) t.Errorf("AfterClose callbacks called out of order: %v, %v", t1, t2)
} }
} }