Skip to content

Commit ca7c690

Browse files
committed
Final commit for now, Panos signing off 🫡
Limits the last test to send the first 100 payloads, to reduce testing time.
1 parent 2f4f34d commit ca7c690

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/src/test/groovy/org/openremote/test/custom/TeltonikaMQTTProtocolTest.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,7 @@ class TeltonikaMQTTProtocolTest extends Specification implements ManagerContaine
507507
String assetId = UniqueIdentifierGenerator.generateId(getTELTONIKA_DEVICE_IMEI());
508508
int i = 0;
509509
when: "the device starts publishing payloads"
510-
payloads.stream().forEach { Object payload ->
510+
payloads.stream().limit(100).forEach { Object payload ->
511511
// Your logic here, for example:
512512
getLOG().debug(JsonOutput.toJson(payload));
513513

0 commit comments

Comments
 (0)