chiark
/
gitweb
/
~ianmdlvl
/
otter.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a1929ee
)
apitest: Fix did message to mention "did"
author
Ian Jackson
<ijackson@chiark.greenend.org.uk>
Sun, 4 Apr 2021 23:11:44 +0000
(
00:11
+0100)
committer
Ian Jackson
<ijackson@chiark.greenend.org.uk>
Mon, 5 Apr 2021 00:44:59 +0000
(
01:44
+0100)
This makes one less thing to think about when grepping.
Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
apitest/apitest.rs
patch
|
blob
|
history
diff --git
a/apitest/apitest.rs
b/apitest/apitest.rs
index e28ff9500fa97e3c0a820f3d4f0d4a974e9c44a4..51be59cbd80e0ea94b23dd66386aba9f1634c656 100644
(file)
--- a/
apitest/apitest.rs
+++ b/
apitest/apitest.rs
@@
-261,7
+261,7
@@
impl<T,E> Result<T,E> {
where Self: anyhow::Context<T,E>
{
let x = self.context(msg);
- if x.is_ok() { info!("
complete
d {}.", msg) };
+ if x.is_ok() { info!("
di
d {}.", msg) };
x
}