Skip to content
This repository was archived by the owner on Aug 11, 2025. It is now read-only.

Commit c399d17

Browse files
committed
fix another dup import
1 parent 22d50a1 commit c399d17

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

internal/orchestrator/updates_test.go

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ import (
2222
"go.uber.org/goleak"
2323

2424
v1types "github.com/metal-toolbox/conditionorc/pkg/api/v1/types"
25-
rcond "github.com/metal-toolbox/rivets/condition"
2625
rctypes "github.com/metal-toolbox/rivets/condition"
2726
)
2827

@@ -159,18 +158,18 @@ func TestEventUpdateFromKV(t *testing.T) {
159158
cID := registry.GetID("test-app")
160159

161160
// add some KVs
162-
sv1 := rcond.StatusValue{
161+
sv1 := rctypes.StatusValue{
163162
Target: uuid.New().String(),
164163
State: "pending",
165164
Status: json.RawMessage(`{"msg":"some-status"}`),
166165
WorkerID: cID.String(),
167166
}
168-
bogus := rcond.StatusValue{
167+
bogus := rctypes.StatusValue{
169168
Target: uuid.New().String(),
170169
State: "bogus",
171170
Status: json.RawMessage(`{"msg":"some-status"}`),
172171
}
173-
noCID := rcond.StatusValue{
172+
noCID := rctypes.StatusValue{
174173
Target: uuid.New().String(),
175174
State: "failed",
176175
Status: json.RawMessage(`{"msg":"some-status"}`),

0 commit comments

Comments
 (0)