From 983176a9e7496132404b3d5e3e83acbd8c16e070 Mon Sep 17 00:00:00 2001 From: Teknique Date: Thu, 25 May 2023 10:56:24 -0700 Subject: [PATCH] =?UTF-8?q?terminate()=20what=20we=E2=80=99ve=20init()ed.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- veilid-core/src/routing_table/tests/test_serialize.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/veilid-core/src/routing_table/tests/test_serialize.rs b/veilid-core/src/routing_table/tests/test_serialize.rs index d959ded0..169796d9 100644 --- a/veilid-core/src/routing_table/tests/test_serialize.rs +++ b/veilid-core/src/routing_table/tests/test_serialize.rs @@ -73,6 +73,10 @@ pub async fn test_routingtable_buckets_round_trip() { } } } + + // Even if these are mocks, we should still practice good hygiene. + original.terminate().await; + copy.terminate().await; } pub async fn test_all() {