Skip to content

Commit

Permalink
Fix lint-check
Browse files Browse the repository at this point in the history
  • Loading branch information
csouchet committed Oct 7, 2020
1 parent 756f1c2 commit 737daba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e/ExpectModelUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ function withFont(this: MatcherContext, received: mxCell, expected: ExpectedFont
const style = bpmnVisualization.graph.getView().getState(received).style;
const receivedFont = { fontStyle: style[mxConstants.STYLE_FONTSTYLE], fontFamily: style[mxConstants.STYLE_FONTFAMILY], fontSize: style[mxConstants.STYLE_FONTSIZE] };

let expectedFont: any;
let expectedFont: unknown;
if (expected) {
expectedFont = { fontStyle: getFontStyleValue(expected), fontFamily: expected.name, fontSize: expected.size };
} else {
Expand Down

0 comments on commit 737daba

Please sign in to comment.