Skip to content

Commit

Permalink
Fix compiling
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-w committed Oct 29, 2024
1 parent 4407d15 commit 5138c95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/TelescopeControl/src/INDI/test/testINDIConnection.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ void TestINDIConnection::listDevices()
INDI::BaseDevice device;
device.setDeviceName("dummy");

instance.newDevice(&device);
instance.newDevice(device);
QVERIFY(instance.devices().size() == 1);
instance.removeDevice(&device);
instance.removeDevice(device);
QVERIFY(instance.devices().empty());
}

Expand Down

0 comments on commit 5138c95

Please sign in to comment.