From e08e52fb6e2fb2b5b7da73e0f3b38ce03df6513f Mon Sep 17 00:00:00 2001 From: Darin Kelkhoff Date: Fri, 8 Jul 2022 12:22:13 -0500 Subject: [PATCH] QQQ-21 switched test value from 'There', since we made that always throw... --- .../qqq/frontend/picocli/QPicoCliImplementationTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/java/com/kingsrook/qqq/frontend/picocli/QPicoCliImplementationTest.java b/src/test/java/com/kingsrook/qqq/frontend/picocli/QPicoCliImplementationTest.java index 4f298522..588a9b5b 100644 --- a/src/test/java/com/kingsrook/qqq/frontend/picocli/QPicoCliImplementationTest.java +++ b/src/test/java/com/kingsrook/qqq/frontend/picocli/QPicoCliImplementationTest.java @@ -497,9 +497,9 @@ class QPicoCliImplementationTest @Test public void test_tableProcessGreetUsingOptionsForFields() throws Exception { - TestOutput testOutput = testCli("person", "process", "greet", "--field-greetingPrefix=Hello", "--field-greetingSuffix=There"); + TestOutput testOutput = testCli("person", "process", "greet", "--field-greetingPrefix=Hello", "--field-greetingSuffix=World"); assertTestOutputDoesNotContain(testOutput, "Please supply a value for the field"); - assertTestOutputContains(testOutput, "Hello X There"); + assertTestOutputContains(testOutput, "Hello X World"); }