diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2019-03-29 20:56:52 +0000 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2019-03-29 20:56:52 +0000 |
commit | 6f8251fb382b2fe979f5c79c44cd2a27971c7b9b (patch) | |
tree | 3a1324bc18e03ab7faf7c9fd575ce2d884080579 /lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp | |
parent | 397ee70180c9e503fb282ce430950b3c36713812 (diff) | |
download | bcm5719-llvm-6f8251fb382b2fe979f5c79c44cd2a27971c7b9b.tar.gz bcm5719-llvm-6f8251fb382b2fe979f5c79c44cd2a27971c7b9b.zip |
[ScriptInterpreterPython] Fix the unit test after refactor
llvm-svn: 357313
Diffstat (limited to 'lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp')
-rw-r--r-- | lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp b/lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp index 27558aa6a06..f6b617d26ae 100644 --- a/lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp +++ b/lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp @@ -9,6 +9,7 @@ #include "gtest/gtest.h" #include "Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h" +#include "Plugins/ScriptInterpreter/Python/ScriptInterpreterPythonImpl.h" #include "Plugins/ScriptInterpreter/Python/lldb-python.h" #include "lldb/Host/FileSystem.h" #include "lldb/Host/HostInfo.h" @@ -16,10 +17,10 @@ #include "PythonTestSuite.h" using namespace lldb_private; -class TestScriptInterpreterPython : public ScriptInterpreterPython { +class TestScriptInterpreterPython : public ScriptInterpreterPythonImpl { public: - using ScriptInterpreterPython::Initialize; - using ScriptInterpreterPython::InitializePrivate; + using ScriptInterpreterPythonImpl::Initialize; + using ScriptInterpreterPythonImpl::InitializePrivate; }; void PythonTestSuite::SetUp() { |