We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71d9d02 commit 5da2666Copy full SHA for 5da2666
src/tests/dspf.test.ts
@@ -76,23 +76,22 @@ describe('DisplayFile tests', () => {
76
77
field.keywords.push(
78
{
79
- name: "COLOR(BLU)",
+ name: "COLOR",
80
+ value: "BLU",
81
conditions: []
82
},
83
- name: "DSPATR(PR)",
84
- conditions: [{
85
- indicator: 21,
86
- negate: true
87
- }]
+ name: "DSPATR",
+ value: "PR",
+ conditions: []
88
}
89
);
90
91
lines = DisplayFile.getLinesForField(field);
92
expect(lines.length).toBe(3);
93
expect(lines[0]).toBe(` A 4 10'Some text'`);
94
expect(lines[1]).toBe(` A COLOR(BLU)`);
95
- expect(lines[2]).toBe(` A N21 DSPATR(PR)`);
+ expect(lines[2]).toBe(` A DSPATR(PR)`);
96
97
});
98
0 commit comments