Skip to content
This repository was archived by the owner on Jul 8, 2022. It is now read-only.

Commit 06f5419

Browse files
committed
Progress #386 fix compilation
1 parent 732c03a commit 06f5419

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/cpp_test_suite/new_tests/cxx_cmd_types.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ class CmdTypesTestSuite: public CxxTest::TestSuite
223223
{
224224
DeviceData din, dout;
225225
din << "abcde";
226-
TS_ASSERT_THROWS_NOTHING(dout = device->command_inout("IOString", din));
226+
TS_ASSERT_THROWS_NOTHING(dout = device1->command_inout("IOString", din));
227227
const char *received;
228228
dout >> received;
229229
TS_ASSERT(strcmp(received, "edcba") == 0);
@@ -237,7 +237,7 @@ class CmdTypesTestSuite: public CxxTest::TestSuite
237237
DeviceData din, dout;
238238
din << in;
239239
free(in);
240-
TS_ASSERT_THROWS_NOTHING(dout = device->command_inout("IOString", din));
240+
TS_ASSERT_THROWS_NOTHING(dout = device1->command_inout("IOString", din));
241241
const char *received;
242242
dout >> received;
243243
TS_ASSERT(strcmp(received, "fedcba") == 0);

0 commit comments

Comments
 (0)