Trivial assert message modification.


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@114927 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/types/AbstractBase.py b/test/types/AbstractBase.py
index f80e0b2..ed4b172 100644
--- a/test/types/AbstractBase.py
+++ b/test/types/AbstractBase.py
@@ -8,7 +8,7 @@
 from lldbtest import *
 
 def Msg(var, val):
-    return "'frame variable %s' matches the compiler's output: %s" % (var, val)
+    return "'frame variable %s' matches the output (from compiled code): %s" % (var, val)
 
 class GenericTester(TestBase):