File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change 3131#include < gtest/gtest.h>
3232#include < iterator>
3333#include < numeric>
34+ #include " ur_client_library/control/reverse_interface.h"
3435
3536#include < ur_client_library/control/script_command_interface.h>
3637#include < ur_client_library/comm/tcp_socket.h>
@@ -102,7 +103,11 @@ class ScriptCommandInterfaceTest : public ::testing::Test
102103
103104 void SetUp ()
104105 {
105- script_command_interface_.reset (new control::ScriptCommandInterface (control::ReverseInterfaceConfig{ 50004 }));
106+ control::ReverseInterfaceConfig config;
107+ config.port = 50004 ;
108+ // Assume, we have all features supported
109+ config.robot_software_version = VersionInformation::fromString (" 99.99.9" );
110+ script_command_interface_.reset (new control::ScriptCommandInterface (config));
106111 client_.reset (new Client (50004 ));
107112 }
108113
You can’t perform that action at this time.
0 commit comments