Skip to content

Commit

Permalink
Final commit for now, Panos signing off 🫡
Browse files Browse the repository at this point in the history
Limits the last test to send the first 100 payloads, to reduce testing time.
  • Loading branch information
pankalog committed Feb 8, 2024
1 parent 2f4f34d commit ca7c690
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ class TeltonikaMQTTProtocolTest extends Specification implements ManagerContaine
String assetId = UniqueIdentifierGenerator.generateId(getTELTONIKA_DEVICE_IMEI());
int i = 0;
when: "the device starts publishing payloads"
payloads.stream().forEach { Object payload ->
payloads.stream().limit(100).forEach { Object payload ->
// Your logic here, for example:
getLOG().debug(JsonOutput.toJson(payload));

Expand Down

0 comments on commit ca7c690

Please sign in to comment.