@@ -72,6 +72,9 @@ protected function setUp(): void
72
72
$ this ->customFieldValues ['nexon-multiselect ' ] = $ this ->customItems ['nexon ' ]->findCustomFieldValueForFieldAlias ('multiselect-test-field ' );
73
73
$ this ->customFieldValues ['nexon-multiselect ' ]->setValue ('option_a ' );
74
74
75
+ $ this ->customFieldValues ['nexon-number ' ] = $ this ->customItems ['nexon ' ]->findCustomFieldValueForFieldAlias ('number-test-field ' );
76
+ $ this ->customFieldValues ['nexon-number ' ]->setValue (10 );
77
+
75
78
$ this ->customItems ['nexon ' ] = $ this ->customItemModel ->save ($ this ->customItems ['nexon ' ]);
76
79
77
80
$ this ->customItems ['fortuner ' ] = new CustomItem ($ this ->customObject );
@@ -102,14 +105,15 @@ public function testDynamicContentEmail(): void
102
105
103
106
$ this ->buildDynamicContentArray ([
104
107
['nexon-datetime ' , null , '!empty ' , 'datetime ' ],
108
+ ['nexon-number ' , 12 , 'lt ' , 'number ' ],
105
109
]),
106
110
'Custom Object Dynamic Content ' ,
107
111
], [
108
112
109
113
$ this ->buildDynamicContentArray ([
110
114
['nexon-text ' , 'Tata ' , '= ' ],
111
- ['nexon-datetime ' , '2024-07-01 ' , 'gte ' ],
112
- ['nexon-multiselect ' , 'option_a ' , 'in ' ],
115
+ ['nexon-datetime ' , '2024-07-01 00:00 ' , 'gte ' , ' datetime ' ],
116
+ ['nexon-multiselect ' , 'option_a ' , 'in ' , ' multiselect ' ],
113
117
]),
114
118
'Custom Object Dynamic Content ' ,
115
119
], [
0 commit comments