From 9eadf50f4c610e6aec808d6c16c6eea53997579c Mon Sep 17 00:00:00 2001 From: pascal Date: Tue, 23 Jun 2026 23:02:48 +0200 Subject: [PATCH] fix typo --- management/server/posture/affects_posture_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/management/server/posture/affects_posture_test.go b/management/server/posture/affects_posture_test.go index 3fdcb03a9..6aa54d892 100644 --- a/management/server/posture/affects_posture_test.go +++ b/management/server/posture/affects_posture_test.go @@ -43,8 +43,8 @@ func TestAffectsPosture_NBVersion(t *testing.T) { {"both below min, no flip", "1.0.0", "1.1.0", false}, {"crosses up below->above", "1.1.0", "1.3.0", true}, {"crosses down above->below", "1.3.0", "1.1.0", true}, - {"unparseable old only -> flip", "garbage", "1.3.0", true}, - {"unparseable both -> no flip", "garbage", "junk", false}, + {"unparsable old only -> flip", "garbage", "1.3.0", true}, + {"unparsable both -> no flip", "garbage", "junk", false}, } for _, tt := range tests { t.Run(tt.name, func(t *testing.T) {