From 5311dde06f2be3c01cc32bc2d4f81889992e8a17 Mon Sep 17 00:00:00 2001 From: Simon Pieters Date: Thu, 3 Jun 2021 22:57:25 +0200 Subject: [PATCH] Use 'then' instead of 'followed by' --- tests/resources/at-commands.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/resources/at-commands.mjs b/tests/resources/at-commands.mjs index 9b1732927..c17168871 100644 --- a/tests/resources/at-commands.mjs +++ b/tests/resources/at-commands.mjs @@ -75,7 +75,7 @@ constructor(commands, support) { command = furtherInstruction ? `${command} ${furtherInstruction}` : command; innerCommands.push(command); } - commands.push(innerCommands.join(' followed by ')); + commands.push(innerCommands.join(", then ")); } return commands;