mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-11 18:16:24 +05:00
Small fix
This commit is contained in:
@@ -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)
|
||||
}
|
||||
}
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user