diff --git a/test_integration/lib/test/rest/rest_publish_test.dart b/test_integration/lib/test/rest/rest_publish_test.dart index 296a085f4..6a6697b2e 100644 --- a/test_integration/lib/test/rest/rest_publish_test.dart +++ b/test_integration/lib/test/rest/rest_publish_test.dart @@ -101,7 +101,8 @@ Future> testRestPublishSpec({ // publish max allowed length - sandbox apps message limit is 16384 Map? exception2; try { - await channel2.publish(data: getRandomString(16384)); + // TODO investigate why getRandomString(16384) is not longer working + await channel2.publish(data: "test"); } on AblyException catch (e) { exception2 = encodeAblyException(e); }