From d574dc7eee36b7f8fd8cfc3c7ba7c7571d79f76c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9line=20Souchet?= Date: Wed, 22 Jul 2020 18:02:59 +0200 Subject: [PATCH] Fix lint-check --- .../component/parser/json/BpmnJsonParser.label.bounds.test.ts | 1 - .../parser/json/BpmnJsonParser.sequenceFlow.normal.test.ts | 2 +- .../component/parser/json/BpmnJsonParser.sub.process.test.ts | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/test/unit/component/parser/json/BpmnJsonParser.label.bounds.test.ts b/test/unit/component/parser/json/BpmnJsonParser.label.bounds.test.ts index 53b3395f8d..792dc93792 100644 --- a/test/unit/component/parser/json/BpmnJsonParser.label.bounds.test.ts +++ b/test/unit/component/parser/json/BpmnJsonParser.label.bounds.test.ts @@ -16,7 +16,6 @@ import { parseJsonAndExpectOnlyEdges, parseJsonAndExpectOnlyFlowNodes, verifyLabelBounds } from './JsonTestUtils'; import each from 'jest-each'; import { TProcess } from '../../../../../src/component/parser/xml/bpmn-json-model/baseElement/rootElement/rootElement'; -import { ShapeBpmnElementKind } from '../../../../../src/model/bpmn/shape/ShapeBpmnElementKind'; describe('parse bpmn as json for label bounds', () => { each([ diff --git a/test/unit/component/parser/json/BpmnJsonParser.sequenceFlow.normal.test.ts b/test/unit/component/parser/json/BpmnJsonParser.sequenceFlow.normal.test.ts index 2bca4ac4c0..abce76e5f1 100644 --- a/test/unit/component/parser/json/BpmnJsonParser.sequenceFlow.normal.test.ts +++ b/test/unit/component/parser/json/BpmnJsonParser.sequenceFlow.normal.test.ts @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -import { parseJsonAndExpectOnlyEdges, parseJsonAndExpectOnlyFlowNodes, verifyEdge, verifyShape } from './JsonTestUtils'; +import { parseJsonAndExpectOnlyEdges, verifyEdge } from './JsonTestUtils'; import Waypoint from '../../../../../src/model/bpmn/edge/Waypoint'; import { TProcess } from '../../../../../src/component/parser/xml/bpmn-json-model/baseElement/rootElement/rootElement'; diff --git a/test/unit/component/parser/json/BpmnJsonParser.sub.process.test.ts b/test/unit/component/parser/json/BpmnJsonParser.sub.process.test.ts index 83070801f4..0266e30395 100644 --- a/test/unit/component/parser/json/BpmnJsonParser.sub.process.test.ts +++ b/test/unit/component/parser/json/BpmnJsonParser.sub.process.test.ts @@ -14,7 +14,7 @@ * limitations under the License. */ import { ShapeBpmnElementKind } from '../../../../../src/model/bpmn/shape/ShapeBpmnElementKind'; -import { parseJsonAndExpectOnlyFlowNodes, parseJsonAndExpectOnlySubProcess, verifyShape } from './JsonTestUtils'; +import { parseJsonAndExpectOnlySubProcess, verifyShape } from './JsonTestUtils'; import each from 'jest-each'; import { ShapeBpmnSubProcessKind } from '../../../../../src/model/bpmn/shape/ShapeBpmnSubProcessKind'; import { TProcess } from '../../../../../src/component/parser/xml/bpmn-json-model/baseElement/rootElement/rootElement';