Skip to content

Commit 7a98f15

Browse files
committed
test: fixup plotschema case for new filter attributes
1 parent ad5089e commit 7a98f15

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/jasmine/tests/plotschema_test.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,8 @@ describe('plot schema', function() {
176176
var valObjects = plotSchema.transforms.filter.attributes,
177177
attrNames = Object.keys(valObjects);
178178

179-
expect(attrNames).toEqual(['operation', 'value', 'filtersrc']);
179+
['operation', 'value', 'filtersrc'].forEach(function(k) {
180+
expect(attrNames).toContain(k);
181+
});
180182
});
181183
});

0 commit comments

Comments
 (0)