test('Match property when using exclude filter with non-matching value', () => {
      let filterExpr = gprop('prop1', 'xxxxx');
      filterExpr = makeExclude(filterExpr);
      expectMatch(filterExpr).toBe(true);
    });