From c399d17948704762ea348eebb8d359e8cddbf28e Mon Sep 17 00:00:00 2001 From: Joel Rebello Date: Tue, 19 Dec 2023 18:34:17 +0100 Subject: [PATCH] fix another dup import --- internal/orchestrator/updates_test.go | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/internal/orchestrator/updates_test.go b/internal/orchestrator/updates_test.go index b69e91b8..dd8fddb1 100644 --- a/internal/orchestrator/updates_test.go +++ b/internal/orchestrator/updates_test.go @@ -22,7 +22,6 @@ import ( "go.uber.org/goleak" v1types "github.com/metal-toolbox/conditionorc/pkg/api/v1/types" - rcond "github.com/metal-toolbox/rivets/condition" rctypes "github.com/metal-toolbox/rivets/condition" ) @@ -159,18 +158,18 @@ func TestEventUpdateFromKV(t *testing.T) { cID := registry.GetID("test-app") // add some KVs - sv1 := rcond.StatusValue{ + sv1 := rctypes.StatusValue{ Target: uuid.New().String(), State: "pending", Status: json.RawMessage(`{"msg":"some-status"}`), WorkerID: cID.String(), } - bogus := rcond.StatusValue{ + bogus := rctypes.StatusValue{ Target: uuid.New().String(), State: "bogus", Status: json.RawMessage(`{"msg":"some-status"}`), } - noCID := rcond.StatusValue{ + noCID := rctypes.StatusValue{ Target: uuid.New().String(), State: "failed", Status: json.RawMessage(`{"msg":"some-status"}`),