From ffbda317d0cee787b857e1a8dfe810ec040de72c Mon Sep 17 00:00:00 2001 From: Christopher Hunter Date: Thu, 11 Jan 2024 18:51:43 -0800 Subject: [PATCH] fix flakey test value I am working on a fix for this here: https://github.com/pivotal-cf/kiln/pull/462 --- internal/acceptance/workflows/scenario/step_funcs_tile_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/acceptance/workflows/scenario/step_funcs_tile_test.go b/internal/acceptance/workflows/scenario/step_funcs_tile_test.go index f97e053fe..5d22da588 100644 --- a/internal/acceptance/workflows/scenario/step_funcs_tile_test.go +++ b/internal/acceptance/workflows/scenario/step_funcs_tile_test.go @@ -19,7 +19,7 @@ func Test_theLockSpecifiesVersionForRelease(t *testing.T) { t.Run("it matches the release version", func(t *testing.T) { ctx, please := setup(t) - err := theLockSpecifiesVersionForRelease(ctx, "0.1.5", "hello-release") + err := theLockSpecifiesVersionForRelease(ctx, "0.2.3", "hello-release") please.Expect(err).NotTo(HaveOccurred()) })