From 2c3d38652c3b9a8be6abf829ab02c45ac5bcd8f7 Mon Sep 17 00:00:00 2001 From: Marc G Date: Fri, 19 Apr 2024 08:37:05 +0200 Subject: [PATCH] code review 1 --- .../__tests__/index.mjs | 28 +++++++++---------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/lib/rules/declaration-block-no-redundant-longhand-properties/__tests__/index.mjs b/lib/rules/declaration-block-no-redundant-longhand-properties/__tests__/index.mjs index 47055cece8..6c9bc6e0ff 100644 --- a/lib/rules/declaration-block-no-redundant-longhand-properties/__tests__/index.mjs +++ b/lib/rules/declaration-block-no-redundant-longhand-properties/__tests__/index.mjs @@ -164,52 +164,52 @@ testRule({ }`, warnings: [ { + line: 5, + endLine: 5, column: 5, endColumn: 22, - endLine: 5, - line: 5, message: messages.expected('border-width'), }, { + line: 9, + endLine: 9, column: 5, endColumn: 22, - endLine: 9, - line: 9, message: messages.expected('border-color'), }, { + line: 10, + endLine: 10, column: 5, endColumn: 21, - endLine: 10, - line: 10, message: messages.expected('border-top'), }, { + line: 11, + endLine: 11, column: 5, endColumn: 23, - endLine: 11, - line: 11, message: messages.expected('border-right'), }, { + line: 12, + endLine: 12, column: 5, endColumn: 24, - endLine: 12, - line: 12, message: messages.expected('border-bottom'), }, { + line: 13, + endLine: 13, column: 5, endColumn: 22, - endLine: 13, - line: 13, message: messages.expected('border-left'), }, { + line: 13, + endLine: 13, column: 5, endColumn: 22, - endLine: 13, - line: 13, message: messages.expected('border-style'), }, ],