diff --git a/tests/Plugins/LinuxDeviceTreeGenerator/tst_LinuxDeviceTreeGenerator.cpp b/tests/Plugins/LinuxDeviceTreeGenerator/tst_LinuxDeviceTreeGenerator.cpp index 4a2086727..09d3a99a3 100644 --- a/tests/Plugins/LinuxDeviceTreeGenerator/tst_LinuxDeviceTreeGenerator.cpp +++ b/tests/Plugins/LinuxDeviceTreeGenerator/tst_LinuxDeviceTreeGenerator.cpp @@ -21,9 +21,9 @@ #include #include #include -#include -#include -#include +#include +#include +#include #include #include @@ -1305,7 +1305,7 @@ QSharedPointer tst_LinuxDeviceTreeGenerator::createMasterBusInterf if (referencedSpace) { - QSharedPointer newMasterInterface(new MasterInterface()); + QSharedPointer newMasterInterface(new InitiatorInterface()); newMasterInterface->setAddressSpaceRef(referencedSpace->name()); newMasterBus->setMaster(newMasterInterface); } @@ -1321,7 +1321,7 @@ QSharedPointer tst_LinuxDeviceTreeGenerator::createSlaveBusInterfa { QSharedPointer newSlaveBus = createBusInterface(busName, General::SLAVE, containingComponent); - QSharedPointer newSlaveInterface(new SlaveInterface()); + QSharedPointer newSlaveInterface(new TargetInterface()); if (referencedMap) { @@ -1342,7 +1342,7 @@ QSharedPointer tst_LinuxDeviceTreeGenerator::createMirroredSlaveBu QSharedPointer newMirrorSlaveBus = createBusInterface(busName, General::MIRROREDSLAVE, containingComponent); - QSharedPointer newMirrorSlaveInterface(new MirroredSlaveInterface()); + QSharedPointer newMirrorSlaveInterface(new MirroredTargetInterface()); newMirrorSlaveInterface->setRange(remapRange); newMirrorSlaveInterface->setRemapAddress(remapAddress);