diff options
author | Aleksey Kladov <[email protected]> | 2021-01-07 15:21:00 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2021-01-07 16:11:27 +0000 |
commit | f459375f4873d601b6a0e2c3c5d29be569b3e067 (patch) | |
tree | 97bceccdbcfa1a5f5b932c16786e7339b4ff39da /crates/test_utils/src | |
parent | 7967ce85cfc5fc2b1996425b44f2a45d0841c8ff (diff) |
Better fixture highlight
Diffstat (limited to 'crates/test_utils/src')
-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 | /// |