Skip to content
Snippets Groups Projects
Commit 3bc82e0f authored by Pierre Gergondet's avatar Pierre Gergondet
Browse files

Remove test for deprecated function

parent 72446bce
No related branches found
No related tags found
No related merge requests found
......@@ -10,20 +10,12 @@ int main(int argc, char ** argv)
dynamicgraph::python::Interpreter interp;
std::string command;
std::string result;
std::string out;
std::string err;
for (int i=0; i<numTest; ++i)
{
//correct input
command = "print \"Hello world\"";
interp.python(command);
//incorrect input
command = "print Hello";
interp.python(command);
std::string result;
std::string out;
std::string err;
//correct input
interp.python("print \"I am the interpreter\"", result, out, err);
//incorrect input
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment