Small fix

This commit is contained in:
Edwardro22
2017-02-27 06:30:33 +02:00
parent d8178a385b
commit cd3e31d4ac

View File

@@ -17,7 +17,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>
*/
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)
}
}
*/