@@ -815,7 +815,7 @@ def test_flags_not_eqaul_no_match(mocker, config):
815
815
"default" : expected_value ,
816
816
"rules" : {
817
817
"tenant id not equals 345345435" : {
818
- "when_match" : False ,
818
+ "when_match" : True ,
819
819
"conditions" : [
820
820
{
821
821
"action" : RuleAction .NOT_EQUALS .value ,
@@ -838,7 +838,7 @@ def test_flags_not_eqaul_match(mocker, config):
838
838
"default" : expected_value ,
839
839
"rules" : {
840
840
"tenant id not equals 345345435" : {
841
- "when_match" : False ,
841
+ "when_match" : True ,
842
842
"conditions" : [
843
843
{
844
844
"action" : RuleAction .NOT_EQUALS .value ,
@@ -863,7 +863,7 @@ def test_flags_less_than_no_match_1(mocker, config):
863
863
"default" : expected_value ,
864
864
"rules" : {
865
865
"Date less than 2021.10.31" : {
866
- "when_match" : False ,
866
+ "when_match" : True ,
867
867
"conditions" : [
868
868
{
869
869
"action" : RuleAction .KEY_LESS_THAN_VALUE .value ,
@@ -886,7 +886,7 @@ def test_flags_less_than_no_match_2(mocker, config):
886
886
"default" : expected_value ,
887
887
"rules" : {
888
888
"Date less than 2021.10.31" : {
889
- "when_match" : False ,
889
+ "when_match" : True ,
890
890
"conditions" : [
891
891
{
892
892
"action" : RuleAction .KEY_LESS_THAN_VALUE .value ,
@@ -909,7 +909,7 @@ def test_flags_less_than_match(mocker, config):
909
909
"default" : expected_value ,
910
910
"rules" : {
911
911
"Date less than 2021.10.31" : {
912
- "when_match" : False ,
912
+ "when_match" : True ,
913
913
"conditions" : [
914
914
{
915
915
"action" : RuleAction .KEY_LESS_THAN_VALUE .value ,
@@ -933,7 +933,7 @@ def test_flags_less_than_or_equal_no_match(mocker, config):
933
933
"default" : expected_value ,
934
934
"rules" : {
935
935
"Date less than or equal 2021.10.31" : {
936
- "when_match" : False ,
936
+ "when_match" : True ,
937
937
"conditions" : [
938
938
{
939
939
"action" : RuleAction .KEY_LESS_THAN_OR_EQUAL_VALUE .value ,
@@ -956,7 +956,7 @@ def test_flags_less_than_or_equal_match_1(mocker, config):
956
956
"default" : expected_value ,
957
957
"rules" : {
958
958
"Date less than or equal 2021.10.31" : {
959
- "when_match" : False ,
959
+ "when_match" : True ,
960
960
"conditions" : [
961
961
{
962
962
"action" : RuleAction .KEY_LESS_THAN_OR_EQUAL_VALUE .value ,
@@ -980,7 +980,7 @@ def test_flags_less_than_or_equal_match_2(mocker, config):
980
980
"default" : expected_value ,
981
981
"rules" : {
982
982
"Date less than or equal 2021.10.31" : {
983
- "when_match" : False ,
983
+ "when_match" : True ,
984
984
"conditions" : [
985
985
{
986
986
"action" : RuleAction .KEY_LESS_THAN_OR_EQUAL_VALUE .value ,
@@ -1004,7 +1004,7 @@ def test_flags_greater_than_no_match_1(mocker, config):
1004
1004
"default" : expected_value ,
1005
1005
"rules" : {
1006
1006
"Date greater than 2021.10.31" : {
1007
- "when_match" : False ,
1007
+ "when_match" : True ,
1008
1008
"conditions" : [
1009
1009
{
1010
1010
"action" : RuleAction .KEY_GREATER_THAN_VALUE .value ,
@@ -1027,7 +1027,7 @@ def test_flags_greater_than_no_match_2(mocker, config):
1027
1027
"default" : expected_value ,
1028
1028
"rules" : {
1029
1029
"Date greater than 2021.10.31" : {
1030
- "when_match" : False ,
1030
+ "when_match" : True ,
1031
1031
"conditions" : [
1032
1032
{
1033
1033
"action" : RuleAction .KEY_GREATER_THAN_VALUE .value ,
@@ -1050,7 +1050,7 @@ def test_flags_greater_than_match(mocker, config):
1050
1050
"default" : expected_value ,
1051
1051
"rules" : {
1052
1052
"Date greater than 2021.10.31" : {
1053
- "when_match" : False ,
1053
+ "when_match" : True ,
1054
1054
"conditions" : [
1055
1055
{
1056
1056
"action" : RuleAction .KEY_GREATER_THAN_VALUE .value ,
@@ -1074,7 +1074,7 @@ def test_flags_greater_than_or_equal_no_match(mocker, config):
1074
1074
"default" : expected_value ,
1075
1075
"rules" : {
1076
1076
"Date greater than or equal 2021.10.31" : {
1077
- "when_match" : False ,
1077
+ "when_match" : True ,
1078
1078
"conditions" : [
1079
1079
{
1080
1080
"action" : RuleAction .KEY_GREATER_THAN_OR_EQUAL_VALUE .value ,
@@ -1097,7 +1097,7 @@ def test_flags_greater_than_or_equal_match_1(mocker, config):
1097
1097
"default" : expected_value ,
1098
1098
"rules" : {
1099
1099
"Date greater than or equal 2021.10.31" : {
1100
- "when_match" : False ,
1100
+ "when_match" : True ,
1101
1101
"conditions" : [
1102
1102
{
1103
1103
"action" : RuleAction .KEY_GREATER_THAN_OR_EQUAL_VALUE .value ,
@@ -1121,7 +1121,7 @@ def test_flags_greater_than_or_equal_match_2(mocker, config):
1121
1121
"default" : expected_value ,
1122
1122
"rules" : {
1123
1123
"Date greater than or equal 2021.10.31" : {
1124
- "when_match" : False ,
1124
+ "when_match" : True ,
1125
1125
"conditions" : [
1126
1126
{
1127
1127
"action" : RuleAction .KEY_GREATER_THAN_OR_EQUAL_VALUE .value ,
0 commit comments