]> git.localhorst.tv Git - blank.git/blobdiff - tst/integration/TestInstance.cpp
typo in test instance
[blank.git] / tst / integration / TestInstance.cpp
index 495ba6cdd413d602b0034895b06386d381843c03..31a5aab2caf87b81a5b8546519cfc3a92eeb033c 100644 (file)
@@ -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);
 }