From 3e9a3ec743236aec5ba4f09de4f4d58297372198 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Fri, 16 Nov 2018 12:34:04 +0100 Subject: [PATCH] Fixed CommandLineTest.testCommandLineVersion --- app/test/processing/app/CommandLineTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/test/processing/app/CommandLineTest.java b/app/test/processing/app/CommandLineTest.java index bf8eb8904..c5fb7b8a1 100644 --- a/app/test/processing/app/CommandLineTest.java +++ b/app/test/processing/app/CommandLineTest.java @@ -142,7 +142,7 @@ public class CommandLineTest { .as("Process will finish with exit code 0 in --version") .isEqualTo(0); Assertions.assertThat(new String(IOUtils.toByteArray(pr.getInputStream()))) - .matches("Arduino: \\d+\\.\\d+\\.\\d+.*"); + .matches("Arduino: \\d+\\.\\d+\\.\\d+.*\n"); } @Test