From 3ca0a6cc3add98c85024e2c6902358b2ae227e5b Mon Sep 17 00:00:00 2001 From: Arjun Khunti Date: Tue, 31 Oct 2023 16:49:40 +0530 Subject: [PATCH] Updated expectedResultPattern --- check/test_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/check/test_test.go b/check/test_test.go index be18e2aa8..ffd93555d 100644 --- a/check/test_test.go +++ b/check/test_test.go @@ -600,7 +600,7 @@ func TestCompareOp(t *testing.T) { // Test Op "eq" {label: "op=eq, both empty", op: "eq", flagVal: "", compareValue: "", expectedResultPattern: "'' is equal to ''", testResult: true, flagName: ""}, - {label: "op=eq, both empty, flagName non empty", op: "eq", flagVal: "", compareValue: "", expectedResultPattern: "'' is equal to ''", testResult: true, flagName: "flagName"}, + {label: "op=eq, both empty, flagName non empty", op: "eq", flagVal: "", compareValue: "", expectedResultPattern: "'flagName' is equal to ''", testResult: true, flagName: "flagName"}, { label: "op=eq, true==true", op: "eq", flagVal: "true",