From e4f5b059482ba40b0a2c2246d2777ae104535563 Mon Sep 17 00:00:00 2001 From: Michael Ferguson Date: Thu, 11 Aug 2022 13:19:59 -0400 Subject: [PATCH] Remove trailing spaces --- Signed-off-by: Michael Ferguson --- compiler/dyno/test/util/testSubprocess.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/dyno/test/util/testSubprocess.cpp b/compiler/dyno/test/util/testSubprocess.cpp index c465ee0af049..52cb96e0bc48 100644 --- a/compiler/dyno/test/util/testSubprocess.cpp +++ b/compiler/dyno/test/util/testSubprocess.cpp @@ -37,13 +37,13 @@ static void checkNonexistent() { cmd.push_back("./nonexistent-command"); rc = executeAndWait(cmd, "nonexistent-command description", true); assert(rc != 0); - + cmd.clear(); cmd.push_back("./nonexistent-command"); cmd.push_back("arg"); rc = executeAndWait(cmd, "nonexistent-command description", true); assert(rc != 0); - + cmd.clear(); cmd.push_back("/this/path/does/not/exist"); rc = executeAndWait(cmd, "path does not exist description", true);