From: Ian Jackson Date: Sun, 4 Apr 2021 23:11:44 +0000 (+0100) Subject: apitest: Fix did message to mention "did" X-Git-Tag: otter-0.5.0~197 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=500bb2f55b42b8737043ddf321eabaf989679f24;p=otter.git apitest: Fix did message to mention "did" This makes one less thing to think about when grepping. Signed-off-by: Ian Jackson --- 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 }