Disable flaky MRP test (#32441)

* Disable flaky MRP test

See https://github.com/project-chip/connectedhomeip/issues/32440

* Restyled by clang-format

---------

Co-authored-by: Restyled.io <commits@restyled.io>
diff --git a/src/messaging/tests/TestReliableMessageProtocol.cpp b/src/messaging/tests/TestReliableMessageProtocol.cpp
index 505a54f..04b8a1a 100644
--- a/src/messaging/tests/TestReliableMessageProtocol.cpp
+++ b/src/messaging/tests/TestReliableMessageProtocol.cpp
@@ -2195,8 +2195,10 @@
                 TestReliableMessageProtocol::CheckLostStandaloneAck),
     NL_TEST_DEF("Test Is Peer Active Retry logic", TestReliableMessageProtocol::CheckIsPeerActiveNotInitiator),
     NL_TEST_DEF("Test MRP backoff algorithm", TestReliableMessageProtocol::CheckGetBackoff),
-    NL_TEST_DEF("Test an application response that comes after MRP retransmits run out",
-                TestReliableMessageProtocol::CheckApplicationResponseDelayed),
+    // TODO: Re-enable this test, after changing test to use Mock clock / DriveIO rather than DriveIOUntil.
+    // Issue: https://github.com/project-chip/connectedhomeip/issues/32440
+    // NL_TEST_DEF("Test an application response that comes after MRP retransmits run out",
+    //            TestReliableMessageProtocol::CheckApplicationResponseDelayed),
     NL_TEST_DEF("Test an application response that never comes, so MRP retransmits run out and then exchange times out",
                 TestReliableMessageProtocol::CheckApplicationResponseNeverComes),
     NL_TEST_SENTINEL(),