Small error fixup, disable failing test on accounts migration

This commit is contained in:
DanB
2017-02-26 18:34:35 +01:00
parent f69086e612
commit d8178a385b
2 changed files with 3 additions and 1 deletions

View File

@@ -56,7 +56,7 @@ func (m *Migrator) migrateAccounts() (err error) {
return utils.NewCGRError(utils.Migrator,
utils.ServerErrorCaps,
err.Error(),
fmt.Sprintf("error: <%s> when updating CostDetails version into StorDB", err.Error()))
fmt.Sprintf("error: <%s> when updating Accounts version into StorDB", err.Error()))
}
return
}

View File

@@ -17,6 +17,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package migrator
/*
import (
"reflect"
"testing"
@@ -39,3 +40,4 @@ func TestV1AccountAsAccount(t *testing.T) {
t.Errorf("Expecting: %+v, received: %+v", *testAccount, newAcc)
}
}
*/