Changed 'frame variable' output to match '(const char *)' instead of '(char const *)'.


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@114652 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/function_types/TestFunctionTypes.py b/test/function_types/TestFunctionTypes.py
index 24d133d..5ca3706 100644
--- a/test/function_types/TestFunctionTypes.py
+++ b/test/function_types/TestFunctionTypes.py
@@ -42,7 +42,7 @@
 
         # Check that the 'callback' variable display properly.
         self.expect("frame variable callback", VARIABLES_DISPLAYED_CORRECTLY,
-            startstr = '(int (*)(char const *)) callback =')
+            startstr = '(int (*)(const char *)) callback =')
 
         # And that we can break on the callback function.
         self.runCmd("breakpoint set -n string_not_empty", BREAKPOINT_CREATED)