summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/src/collect.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/src/collect.rs b/tests/src/collect.rs
index 33f4f736..84af04d2 100644
--- a/tests/src/collect.rs
+++ b/tests/src/collect.rs
@@ -30,7 +30,8 @@ pub struct Test {
impl Display for Test {
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
- write!(f, "{} ({})", self.name, self.pos)
+ // underline path
+ write!(f, "{} (\x1B[4m{}\x1B[0m)", self.name, self.pos)
}
}