From 7717332100ba80f16c6c0cb320ef8e2c7ae69ecf Mon Sep 17 00:00:00 2001 From: Radu Ioan Fericean Date: Fri, 6 May 2016 18:55:33 +0300 Subject: [PATCH] fix build --- 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 7bc966260..3e5d3dbc9 100644 --- a/apier/v1/apier_local_test.go +++ b/apier/v1/apier_local_test.go @@ -812,7 +812,7 @@ func TestApierReloadCache(t *testing.T) { return } reply := "" - arc := new(utils.ApiReloadCache) + arc := new(utils.AttrReloadCache) // Simple test that command is executed without errors if err := rater.Call("ApierV1.ReloadCache", arc, &reply); err != nil { t.Error("Got error on ApierV1.ReloadCache: ", err.Error()) @@ -1236,7 +1236,7 @@ func TestApierResetDataBeforeLoadFromFolder(t *testing.T) { } TestApierInitDataDb(t) reply := "" - arc := new(utils.ApiReloadCache) + arc := new(utils.AttrReloadCache) // Simple test that command is executed without errors if err := rater.Call("ApierV1.ReloadCache", arc, &reply); err != nil { t.Error("Got error on ApierV1.ReloadCache: ", err.Error()) @@ -1282,7 +1282,7 @@ func TestApierResetDataAfterLoadFromFolder(t *testing.T) { return } reply := "" - arc := new(utils.ApiReloadCache) + arc := new(utils.AttrReloadCache) // Simple test that command is executed without errors if err := rater.Call("ApierV1.ReloadCache", arc, &reply); err != nil { t.Error("Got error on ApierV1.ReloadCache: ", err.Error()) @@ -1708,7 +1708,7 @@ func TestApierReloadCache2(t *testing.T) { return } reply := "" - arc := new(utils.ApiReloadCache) + arc := new(utils.AttrReloadCache) // Simple test that command is executed without errors if err := rater.Call("ApierV1.ReloadCache", arc, &reply); err != nil { t.Error("Got error on ApierV1.ReloadCache: ", err.Error())