diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2021-01-07 16:11:54 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2021-01-07 16:11:54 +0000 |
commit | 344704a054fe3cf9c54893c2bfa0ec6ebbabf692 (patch) | |
tree | 5f0063b4d3b5b7f78a76d375f4237763bdd82221 /crates/test_utils/src/lib.rs | |
parent | b821264f861be959709aa0e7e87b4c5e1ce335b5 (diff) | |
parent | f459375f4873d601b6a0e2c3c5d29be569b3e067 (diff) |
Merge #7196
7196: Better fixture highlight r=matklad a=matklad
bors r+
🤖
Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'crates/test_utils/src/lib.rs')
-rw-r--r-- | crates/test_utils/src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/test_utils/src/lib.rs b/crates/test_utils/src/lib.rs index 05d6e8c9e..84c1d7ebb 100644 --- a/crates/test_utils/src/lib.rs +++ b/crates/test_utils/src/lib.rs | |||
@@ -26,6 +26,7 @@ pub use rustc_hash::FxHashMap; | |||
26 | pub use crate::fixture::Fixture; | 26 | pub use crate::fixture::Fixture; |
27 | 27 | ||
28 | pub const CURSOR_MARKER: &str = "$0"; | 28 | pub const CURSOR_MARKER: &str = "$0"; |
29 | pub const ESCAPED_CURSOR_MARKER: &str = "\\$0"; | ||
29 | 30 | ||
30 | /// Asserts that two strings are equal, otherwise displays a rich diff between them. | 31 | /// Asserts that two strings are equal, otherwise displays a rich diff between them. |
31 | /// | 32 | /// |