Fixed typo in trigger test

This commit is contained in:
Stefan Zermatten
2023-04-14 13:02:27 +02:00
parent e961fd2b98
commit 288a086ffe

View File

@@ -52,7 +52,7 @@ export default function () {
assert.isTrue(
triggerMatchTags(clean({
type: 'trigger',
extraTags: [{ operation: 'Or', tags: ['or1'] }]
extraTags: [{ operation: 'OR', tags: ['or1'] }]
}), positiveProp),
'Trigger matches when OR tags are present'
);
@@ -60,7 +60,7 @@ export default function () {
triggerMatchTags(clean({
type: 'trigger',
targetTags: ['missing1'],
extraTags: [{ operation: 'Or', tags: ['or1'] }]
extraTags: [{ operation: 'OR', tags: ['or1'] }]
}), positiveProp),
'Trigger matches when only OR tags are present'
);