Skip to content

Commit

Permalink
(chores) camel-paho-mqtt5: fix another integration/unit test mismatch
Browse files Browse the repository at this point in the history
Signed-off-by: Otavio R. Piske <[email protected]>
  • Loading branch information
orpiske committed Jan 7, 2024
1 parent d5b43d6 commit 70488f4
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
import static org.junit.jupiter.api.Assertions.assertNotEquals;
import static org.junit.jupiter.api.Assertions.fail;

public class PahoMqtt5ReconnectAfterFailureTest extends CamelTestSupport {
public class PahoMqtt5ReconnectAfterFailureIT extends CamelTestSupport {

public static final String TESTING_ROUTE_ID = "testingRoute";
private static int mqttPort = AvailablePortFinder.getNextAvailable();
Expand Down Expand Up @@ -73,8 +73,8 @@ public void doPreSetup() throws Exception {
// to ensure first consumer connection fails
service = MosquittoServiceFactory
.builder()
.addLocalMapping(PahoMqtt5ReconnectAfterFailureTest::createLocalService)
.addRemoteMapping(PahoMqtt5ReconnectAfterFailureTest::createRemoteService)
.addLocalMapping(PahoMqtt5ReconnectAfterFailureIT::createLocalService)
.addRemoteMapping(PahoMqtt5ReconnectAfterFailureIT::createRemoteService)
.build();
}

Expand Down

0 comments on commit 70488f4

Please sign in to comment.