X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=tst%2Fintegration%2FTestInstance.cpp;h=31a5aab2caf87b81a5b8546519cfc3a92eeb033c;hb=ae99cb2cdafb6f59ab82e598331ce0951b32bce2;hp=495ba6cdd413d602b0034895b06386d381843c03;hpb=0644360107ca50d681ae8b8cad608c7bc2ec7a40;p=blank.git diff --git a/tst/integration/TestInstance.cpp b/tst/integration/TestInstance.cpp index 495ba6c..31a5aab 100644 --- a/tst/integration/TestInstance.cpp +++ b/tst/integration/TestInstance.cpp @@ -28,10 +28,7 @@ Process::Arguments combine_args(const TempDir &dir, const Process::Arguments &in TestInstance::TestInstance(const Process::Arguments &args, bool cmd) : dir() -, proc( - "./blank" BLANK_SUFFIX, - combine_args(dir, args, cmd), - { }) +, proc("./blank" BLANK_SUFFIX, combine_args(dir, args, cmd)) , conn() , out_buf() , err_buf() @@ -107,7 +104,7 @@ void TestInstance::AssertNoOutput() { string output; ExhaustOutput(output); CPPUNIT_ASSERT_EQUAL_MESSAGE( - "test instanced produced unexpected output", + "test instance produced unexpected output", string(""), output); } @@ -156,7 +153,7 @@ void TestInstance::AssertNoError() { string error; ExhaustError(error); CPPUNIT_ASSERT_EQUAL_MESSAGE( - "test instanced produced unexpected error output", + "test instance produced unexpected error output", string(""), error); }