From a4ae9b9541253d01d72ce9cb56c43d9659451e07 Mon Sep 17 00:00:00 2001 From: Antoniu Pop Date: Mon, 28 Feb 2022 13:16:59 +0000 Subject: [PATCH] fix(TestLib): fix error message typo. --- compiler/include/concretelang/TestLib/TestTypedLambda.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/include/concretelang/TestLib/TestTypedLambda.h b/compiler/include/concretelang/TestLib/TestTypedLambda.h index cb9e55de1..235b65c83 100644 --- a/compiler/include/concretelang/TestLib/TestTypedLambda.h +++ b/compiler/include/concretelang/TestLib/TestTypedLambda.h @@ -83,7 +83,7 @@ public: std::ostringstream serverOutput(BINARY); OUTCOME_TRYV(serverLambda.read_call_write(serverInput, serverOutput)); if (serverInput.fail()) { - return StringError("Error on serverOutput"); + return StringError("Error on serverInput"); } if (serverOutput.fail()) { return StringError("Error on serverOutput");