From 73286e3c7184c2cd2d83ef591e654c397219c73d Mon Sep 17 00:00:00 2001 From: Radu Ioan Fericean Date: Thu, 24 Mar 2016 13:24:31 +0200 Subject: [PATCH] update integration test --- apier/v1/apier_local_test.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apier/v1/apier_local_test.go b/apier/v1/apier_local_test.go index 47da716b5..88ad8c819 100644 --- a/apier/v1/apier_local_test.go +++ b/apier/v1/apier_local_test.go @@ -1294,10 +1294,10 @@ func TestApierResetDataAfterLoadFromFolder(t *testing.T) { if err := rater.Call("ApierV1.GetCacheStats", args, &rcvStats); err != nil { t.Error("Got error on ApierV1.GetCacheStats: ", err.Error()) } else { - if rcvStats.Destinations != 4 || - rcvStats.RatingPlans != 3 || - rcvStats.RatingProfiles != 3 || - rcvStats.Actions != 6 || + if rcvStats.Destinations != 5 || + rcvStats.RatingPlans != 4 || + rcvStats.RatingProfiles != 4 || + rcvStats.Actions != 7 || rcvStats.DerivedChargers != 2 { t.Errorf("Calling ApierV1.GetCacheStats received: %+v", rcvStats) }