From 276278f4f12f0893543e6bcf04b2f40a6d88539a Mon Sep 17 00:00:00 2001 From: Kruchinin Date: Thu, 12 Nov 2020 15:47:36 +0300 Subject: [PATCH] Minor fix. --- .../actions_tasks_objects/case_14_appearance_features.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/cypress/integration/actions_tasks_objects/case_14_appearance_features.js b/tests/cypress/integration/actions_tasks_objects/case_14_appearance_features.js index 49da0a6b..640730a8 100644 --- a/tests/cypress/integration/actions_tasks_objects/case_14_appearance_features.js +++ b/tests/cypress/integration/actions_tasks_objects/case_14_appearance_features.js @@ -147,7 +147,7 @@ context('Appearance features', () => { }); // Disable "Outlined borders" and check css "stroke" for polyline. cy.get('.cvat-appearance-outlinded-borders-checkbox').click(); - cy.get('#cvat_canvas_shape_3').should('have.css', 'stroke', 'rgb(224, 224, 224)') // have CSS property stroke with the value rgb(224, 224, 224) + cy.get('#cvat_canvas_shape_3').should('have.css', 'stroke', 'rgb(224, 224, 224)'); // have CSS property stroke with the value rgb(224, 224, 224) }); }); });