From 6c191590b5b0ffb361f8717d2df13b15786b9df7 Mon Sep 17 00:00:00 2001 From: Maciej Barelkowski Date: Thu, 18 Apr 2019 15:08:47 +0200 Subject: [PATCH] test(modeling/layout): expect layout on reconnect end --- .../features/modeling/layout/LayoutSequenceFlowSpec.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/spec/features/modeling/layout/LayoutSequenceFlowSpec.js b/test/spec/features/modeling/layout/LayoutSequenceFlowSpec.js index 493382f9..18d5a9d3 100644 --- a/test/spec/features/modeling/layout/LayoutSequenceFlowSpec.js +++ b/test/spec/features/modeling/layout/LayoutSequenceFlowSpec.js @@ -294,10 +294,10 @@ describe('features/modeling - layout', function() { describe('relayout', function() { - it('should not repair after reconnect end', inject(function() { + it('should repair after reconnect end', inject(function() { // given - var newDocking = { x: 660, y: 280 }; + var newDocking = { x: 660, y: 300 }; var connection = element('SequenceFlow_1'); // when @@ -307,8 +307,8 @@ describe('features/modeling - layout', function() { expect(connection).to.have.waypoints([ { x: 382, y: 241 }, { x: 559, y: 241 }, - { x: 559, y: 138 }, - { x: 660, y: 280 } + { x: 559, y: 300 }, + { x: 655, y: 300 } ]); }));