LazUtils: Test: TestMasks: fix tests after #3c6c852b (mocAnyCharOrNone not enabled by default anymore).

This commit is contained in:
Bart 2021-11-08 22:49:54 +01:00
parent 3c6c852bc1
commit 0f77d36d93

View File

@ -281,7 +281,7 @@ begin
TestMask('a?c', '?\??', False);
TestMask('ab*.x', '??\*.x', False);
TestMask('x \ y', '? \\ ?', False);
TestMask('abc', '?[?]?', True); //mocAnyCharOrNone is enabled in DefaultMaskOpCodes
TestMask('abc', '?[?]?', False);
TestMask('a??d', '?[?]?', False);
end;