QQQ-21 switched test value from 'There', since we made that always throw...

This commit is contained in:
2022-07-08 12:22:13 -05:00
parent b25a7fe5b8
commit e08e52fb6e

View File

@ -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");
}