From 317b902d52b2fa08395e72034503528f7dbc6dc0 Mon Sep 17 00:00:00 2001 From: Tara Gu Date: Thu, 20 Feb 2020 12:06:31 -0500 Subject: [PATCH] Fix rebase --- pkg/reconciler/configuration/configuration_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/reconciler/configuration/configuration_test.go b/pkg/reconciler/configuration/configuration_test.go index c8828dbd294a..7bd8575a0762 100644 --- a/pkg/reconciler/configuration/configuration_test.go +++ b/pkg/reconciler/configuration/configuration_test.go @@ -473,7 +473,7 @@ func TestReconcile(t *testing.T) { Objects: []runtime.Object{ cfg("lrrnotexist", "foo", 2, WithLatestCreated("lrrnotexist-00002"), - WithLatestReady("lrrnotexist-00001"), WithObservedGen, func(cfg *v1alpha1.Configuration) { + WithLatestReady("lrrnotexist-00001"), WithObservedGen, func(cfg *v1.Configuration) { cfg.Spec.GetTemplate().Name = "lrrnotexist-00002" }, ), @@ -488,7 +488,7 @@ func TestReconcile(t *testing.T) { Object: cfg("lrrnotexist", "foo", 2, WithLatestCreated("lrrnotexist-00002"), WithLatestReady("lrrnotexist-00002"), - WithObservedGen, func(cfg *v1alpha1.Configuration) { + WithObservedGen, func(cfg *v1.Configuration) { cfg.Spec.GetTemplate().Name = "lrrnotexist-00002" }, ),