From: Lang Hames Date: Sun, 8 Jan 2017 02:27:30 +0000 (+0000) Subject: [Orc][RPC] Fix typo. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5bf195e38b837da6867807d8950258b77b76fc55;p=llvm [Orc][RPC] Fix typo. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@291381 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp b/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp index 23052dcb70e..e379ce72111 100644 --- a/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp +++ b/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp @@ -498,7 +498,7 @@ TEST(DummyRPC, TestAPICalls) { auto Err = DummyCallsAll::negotiate(Client); EXPECT_EQ(errorToErrorCode(std::move(Err)).value(), static_cast(OrcErrorCode::UnknownRPCFunction)) - << "Uxpected 'UnknownRPCFunction' error for attempted negotiate of " + << "Expected 'UnknownRPCFunction' error for attempted negotiate of " "unsupported function"; }