diff --git a/check/test.go b/check/test.go
index 4e1507c1487d57d26f14582f6d1abdcf26b198d5..24707215be59b0aac012496a7ed8eba0177d930c 100644
--- a/check/test.go
+++ b/check/test.go
@@ -80,6 +80,7 @@ func (t *testItem) execute(s string) (result bool) {
 
 			switch t.Compare.Op {
 			case "eq":
+				value := strings.ToLower(flagVal)
 				// Do case insensitive comparaison for booleans ...
 				if value == "false" || value == "true" {
 					result = value == t.Compare.Value
@@ -88,6 +89,7 @@ func (t *testItem) execute(s string) (result bool) {
 				}
 
 			case "noteq":
+				value := strings.ToLower(flagVal)
 				// Do case insensitive comparaison for booleans ...
 				if value == "false" || value == "true" {
 					result = !(value == t.Compare.Value)