[ScriptInterpreterPython] Fix the unit test after refactor
authorJonas Devlieghere <jonas@devlieghere.com>
Fri, 29 Mar 2019 20:56:52 +0000 (20:56 +0000)
committerJonas Devlieghere <jonas@devlieghere.com>
Fri, 29 Mar 2019 20:56:52 +0000 (20:56 +0000)
llvm-svn: 357313

lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp

index 27558aa..f6b617d 100644 (file)
@@ -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"
 #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() {