[ORC] Fix typo in unit test.
authorLang Hames <lhames@gmail.com>
Thu, 10 Nov 2022 00:11:40 +0000 (16:11 -0800)
committerLang Hames <lhames@gmail.com>
Thu, 10 Nov 2022 00:12:41 +0000 (16:12 -0800)
llvm/unittests/ExecutionEngine/Orc/SymbolStringPoolTest.cpp

index aab465a..3247570 100644 (file)
@@ -26,7 +26,7 @@ TEST(SymbolStringPool, UniquingAndComparisons) {
   auto P3 = SP.intern("goodbye");
 
   EXPECT_EQ(P1, P2) << "Failed to unique entries";
-  EXPECT_NE(P1, P3) << "Inequal pooled symbol strings comparing equal";
+  EXPECT_NE(P1, P3) << "Unequal pooled symbol strings comparing equal";
 
   // We want to test that less-than comparison of SymbolStringPtrs compiles,
   // however we can't test the actual result as this is a pointer comparison and