From 0a52ff48fd53c5fc79639062692742832fd5ac2a Mon Sep 17 00:00:00 2001 From: vimystic <122659254+vimystic@users.noreply.github.com> Date: Tue, 19 Nov 2024 22:41:39 -0700 Subject: [PATCH] Use Ordinal within spec (duh)) --- internal/fullnode/build_pods_test.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/internal/fullnode/build_pods_test.go b/internal/fullnode/build_pods_test.go index a569567e..66e1ac56 100644 --- a/internal/fullnode/build_pods_test.go +++ b/internal/fullnode/build_pods_test.go @@ -115,6 +115,7 @@ func TestBuildPods(t *testing.T) { }, Spec: cosmosv1.FullNodeSpec{ Replicas: 6, + Ordinal: cosmosv1.Ordinal{Start: 2}, }, Status: cosmosv1.FullNodeStatus{ ScheduledSnapshotStatus: map[string]cosmosv1.FullNodeSnapshotStatus{ @@ -123,9 +124,6 @@ func TestBuildPods(t *testing.T) { "some.scheduled.snapshot.ignored": {PodCandidate: "agoric-99"}, }, }, - Ordinal: cosmosv1.Ordinal{ - Start: 2, - }, } pods, err := BuildPods(crd, nil)