[llvm] r291381 - [Orc][RPC] Fix typo.

Lang Hames via llvm-commits llvm-commits at lists.llvm.org
Sat Jan 7 18:27:31 PST 2017


Author: lhames
Date: Sat Jan  7 20:27:30 2017
New Revision: 291381

URL: http://llvm.org/viewvc/llvm-project?rev=291381&view=rev
Log:
[Orc][RPC] Fix typo.

Modified:
    llvm/trunk/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp

Modified: llvm/trunk/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp?rev=291381&r1=291380&r2=291381&view=diff
==============================================================================
--- llvm/trunk/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp (original)
+++ llvm/trunk/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp Sat Jan  7 20:27:30 2017
@@ -498,7 +498,7 @@ TEST(DummyRPC, TestAPICalls) {
     auto Err = DummyCallsAll::negotiate(Client);
     EXPECT_EQ(errorToErrorCode(std::move(Err)).value(),
               static_cast<int>(OrcErrorCode::UnknownRPCFunction))
-      << "Uxpected 'UnknownRPCFunction' error for attempted negotiate of "
+      << "Expected 'UnknownRPCFunction' error for attempted negotiate of "
          "unsupported function";
   }
 




More information about the llvm-commits mailing list