From 500bb2f55b42b8737043ddf321eabaf989679f24 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Mon, 5 Apr 2021 00:11:44 +0100 Subject: [PATCH] apitest: Fix did message to mention "did" This makes one less thing to think about when grepping. Signed-off-by: Ian Jackson --- apitest/apitest.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apitest/apitest.rs b/apitest/apitest.rs index e28ff950..51be59cb 100644 --- a/apitest/apitest.rs +++ b/apitest/apitest.rs @@ -261,7 +261,7 @@ impl Result { where Self: anyhow::Context { let x = self.context(msg); - if x.is_ok() { info!("completed {}.", msg) }; + if x.is_ok() { info!("did {}.", msg) }; x } -- 2.30.2