From 2c9d0fa1319bbc4e12516317359ab3d5d1baaa99 Mon Sep 17 00:00:00 2001 From: Zuul Date: Fri, 5 Dec 2025 18:11:28 +0000 Subject: [PATCH] Update git submodules * Update swift from branch 'master' to 20a2c47d9f5d0883c7a68baaab1c9e2c061f6748 - Merge "ssync: Refactor tests to use Timestamp and new assert" - ssync: Refactor tests to use Timestamp and new assert Created a new assertConnectionMessages() assert that will take it a list of message strings (without the length and added \r\n), these are added and compared against the actual connection messages passed in. I.e: self.assertEqual( b''.join(connection.sent), b'17\r\n:MISSING_CHECK: START\r\n\r\n' b'15\r\n:MISSING_CHECK: END\r\n\r\n') Becomes: self.assertConnectionMessages( [b':MISSING_CHECK: START', b':MISSING_CHECK: END'] connection.sent) And the hex lengths are automatically calculated. This because more useful when you pass in variable messages and timestamps. Change-Id: I405e218f6e6d6f12818f611e08d5c7f8963ee8c6 Signed-off-by: Matthew Oliver --- swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swift b/swift index 0eabd90388..20a2c47d9f 160000 --- a/swift +++ b/swift @@ -1 +1 @@ -Subproject commit 0eabd90388e88d5d45d8b3985f454c15798efcbb +Subproject commit 20a2c47d9f5d0883c7a68baaab1c9e2c061f6748