Skip to content

Commit 706df76

Browse files
committed
test: modify order of expected and actual as "is" function required
1 parent 32016de commit 706df76

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

tests/unit/test-config.mjs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ test_TypicalReplyConfig_constructor.parameters = {
7676
export function test_TypicalReplyConfig_constructor({ argument, expected }) {
7777
const typicalReplyConfig = new TypicalReplyConfig(argument);
7878
is(
79-
typicalReplyConfig,
80-
expected
79+
expected,
80+
typicalReplyConfig
8181
);
8282
}
8383

@@ -261,7 +261,7 @@ test_ButtonConfig_constructor.parameters = {
261261
export function test_ButtonConfig_constructor({ argument, expected }) {
262262
const buttonConfig = new ButtonConfig(argument);
263263
is(
264-
buttonConfig,
265-
expected
264+
expected,
265+
buttonConfig
266266
);
267-
}
267+
}

0 commit comments

Comments
 (0)