From cd3e31d4ac7dfde15afe14e957148dd513339aa0 Mon Sep 17 00:00:00 2001 From: Edwardro22 Date: Mon, 27 Feb 2017 06:30:33 +0200 Subject: [PATCH] Small fix --- migrator/accounts_test.go | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/migrator/accounts_test.go b/migrator/accounts_test.go index bc3947241..be87f12ec 100644 --- a/migrator/accounts_test.go +++ b/migrator/accounts_test.go @@ -17,7 +17,6 @@ along with this program. If not, see */ package migrator -/* import ( "reflect" "testing" @@ -36,8 +35,7 @@ func TestV1AccountAsAccount(t *testing.T) { t.Errorf("Expecting: false, received: true") } newAcc := v1Acc.AsAccount() - if !reflect.DeepEqual(*testAccount, newAcc) { - t.Errorf("Expecting: %+v, received: %+v", *testAccount, newAcc) + if !reflect.DeepEqual(testAccount, newAcc) { + t.Errorf("Expecting: %+v, received: %+v", testAccount, newAcc) } } -*/