From ee6f4c6a0d89a5a9a5f7c2e64943db03f5a70e08 Mon Sep 17 00:00:00 2001 From: Alistair Coles Date: Tue, 4 Nov 2025 10:37:54 +0000 Subject: [PATCH] trivial: tests: clarify exception handling Clarify that the caught exception message is not used to construct the resulting log message. Change-Id: I5cdaa27d25f43865eab2f8b12cc68a5d086ef0c7 Related-Change: Ib54172131f1e3abd9b0419aa0370930c6fc82ba9 Signed-off-by: Alistair Coles --- test/unit/container/test_replicator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/container/test_replicator.py b/test/unit/container/test_replicator.py index 442e73d692..6c16326fd7 100644 --- a/test/unit/container/test_replicator.py +++ b/test/unit/container/test_replicator.py @@ -3003,7 +3003,7 @@ class TestReplicatorSync(test_db_replicator.TestReplicatorSync): broker = self._get_broker('a', 'c', node_index=0) daemon.sync_store.remove_synced_container.side_effect = Exception( - 'Failed to remove sync_store entry') + 'kaboom') delete_success = daemon.delete_db(broker)