test(modeling/layout): fix test case values

closes #266
This commit is contained in:
Ricardo Matias 2015-08-18 15:03:46 +02:00 committed by Nico Rehwaldt
parent 4196ae8b00
commit fd3afbb508
1 changed files with 1 additions and 2 deletions

View File

@ -28,7 +28,6 @@ describe('features/modeling - layout message flows', function() {
modeling.moveElements([ taskShape ], { x: 30, y: 20 });
// then
// expect cropped, repaired manhattan connection
expect(messageFlowConnection.waypoints).eql([
{ original: { x: 420, y: 234 }, x: 420, y: 234 },
@ -72,7 +71,7 @@ describe('features/modeling - layout message flows', function() {
// expect cropped, repaired manhattan connection
expect(messageFlowConnection.waypoints).eql([
{ original: { x: 671, y: 214 }, x: 671, y: 214 },
{ original: { x: 671, y: 465 }, x: 671, y: 465 }
{ original: { x: 771, y: 465 }, x: 771, y: 465 }
]);
}));