diff options
author | Aleksey Kladov <[email protected]> | 2020-06-27 19:45:04 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-06-27 19:50:16 +0100 |
commit | 18e4e9fb0ba2fa4e1f018b499d9b3c025cb2a51c (patch) | |
tree | 7321a769dd03e88e280ceb57488c1ff8dcc340aa /crates | |
parent | d21dae738b4440f699356865c71e4235f2911de6 (diff) |
Update crates/expect/src/lib.rs
Co-authored-by: bjorn3 <[email protected]>
Diffstat (limited to 'crates')
-rw-r--r-- | crates/expect/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/expect/src/lib.rs b/crates/expect/src/lib.rs index 1a1302cec..92364bfa7 100644 --- a/crates/expect/src/lib.rs +++ b/crates/expect/src/lib.rs | |||
@@ -78,7 +78,7 @@ impl Expect { | |||
78 | line_start += line.len(); | 78 | line_start += line.len(); |
79 | } | 79 | } |
80 | let (literal_start, line_indent) = target_line.unwrap(); | 80 | let (literal_start, line_indent) = target_line.unwrap(); |
81 | let literal_length = file[literal_start..].find("]]").unwrap(); | 81 | let literal_length = file[literal_start..].find("]]").expect("Couldn't find matching `]]` for `expect![[`."); |
82 | let literal_range = literal_start..literal_start + literal_length; | 82 | let literal_range = literal_start..literal_start + literal_length; |
83 | Location { line_indent, literal_range } | 83 | Location { line_indent, literal_range } |
84 | } | 84 | } |