Fixed typo in trigger test
This commit is contained in:
@@ -52,7 +52,7 @@ export default function () {
|
|||||||
assert.isTrue(
|
assert.isTrue(
|
||||||
triggerMatchTags(clean({
|
triggerMatchTags(clean({
|
||||||
type: 'trigger',
|
type: 'trigger',
|
||||||
extraTags: [{ operation: 'Or', tags: ['or1'] }]
|
extraTags: [{ operation: 'OR', tags: ['or1'] }]
|
||||||
}), positiveProp),
|
}), positiveProp),
|
||||||
'Trigger matches when OR tags are present'
|
'Trigger matches when OR tags are present'
|
||||||
);
|
);
|
||||||
@@ -60,7 +60,7 @@ export default function () {
|
|||||||
triggerMatchTags(clean({
|
triggerMatchTags(clean({
|
||||||
type: 'trigger',
|
type: 'trigger',
|
||||||
targetTags: ['missing1'],
|
targetTags: ['missing1'],
|
||||||
extraTags: [{ operation: 'Or', tags: ['or1'] }]
|
extraTags: [{ operation: 'OR', tags: ['or1'] }]
|
||||||
}), positiveProp),
|
}), positiveProp),
|
||||||
'Trigger matches when only OR tags are present'
|
'Trigger matches when only OR tags are present'
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user