aboutsummaryrefslogtreecommitdiff
path: root/helix-core/src/test.rs
diff options
context:
space:
mode:
authorIvan Tham2022-03-10 15:14:19 +0000
committerBlaž Hrastnik2022-04-02 15:46:53 +0000
commitec21de08446656b9012c39db2db3d02c7ce3dc9c (patch)
tree80fe374adbffb6392dbd9e3d37fbf096bca204e1 /helix-core/src/test.rs
parent8b91ecde40e95a8ba956881c95da60adbf98abb6 (diff)
Add missing # back to test output
Diffstat (limited to 'helix-core/src/test.rs')
-rw-r--r--helix-core/src/test.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/helix-core/src/test.rs b/helix-core/src/test.rs
index 345d9e9c..064ca8a3 100644
--- a/helix-core/src/test.rs
+++ b/helix-core/src/test.rs
@@ -45,6 +45,7 @@ pub fn print(s: &str) -> (String, Selection) {
Some('[') => (true, ']'),
Some('(') => (false, ')'),
Some(ch) => {
+ left.push('#');
left.push(ch);
continue;
}