diff options
Diffstat (limited to 'crates/test_utils/src/fixture.rs')
-rw-r--r-- | crates/test_utils/src/fixture.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/test_utils/src/fixture.rs b/crates/test_utils/src/fixture.rs index 0cd51ab3e..ba928bb9c 100644 --- a/crates/test_utils/src/fixture.rs +++ b/crates/test_utils/src/fixture.rs | |||
@@ -55,7 +55,7 @@ The offending line: {:?}"#, | |||
55 | let mut res: Vec<Fixture> = Vec::new(); | 55 | let mut res: Vec<Fixture> = Vec::new(); |
56 | for line in lines.by_ref() { | 56 | for line in lines.by_ref() { |
57 | if line.starts_with("//-") { | 57 | if line.starts_with("//-") { |
58 | let meta = Fixture::parse_single(line); | 58 | let meta = Fixture::parse_meta_line(line); |
59 | res.push(meta) | 59 | res.push(meta) |
60 | } else if let Some(entry) = res.last_mut() { | 60 | } else if let Some(entry) = res.last_mut() { |
61 | entry.text.push_str(line); | 61 | entry.text.push_str(line); |
@@ -66,7 +66,7 @@ The offending line: {:?}"#, | |||
66 | } | 66 | } |
67 | 67 | ||
68 | //- /lib.rs crate:foo deps:bar,baz cfg:foo=a,bar=b env:OUTDIR=path/to,OTHER=foo | 68 | //- /lib.rs crate:foo deps:bar,baz cfg:foo=a,bar=b env:OUTDIR=path/to,OTHER=foo |
69 | pub fn parse_single(meta: &str) -> Fixture { | 69 | pub fn parse_meta_line(meta: &str) -> Fixture { |
70 | assert!(meta.starts_with("//-")); | 70 | assert!(meta.starts_with("//-")); |
71 | let meta = meta["//-".len()..].trim(); | 71 | let meta = meta["//-".len()..].trim(); |
72 | let components = meta.split_ascii_whitespace().collect::<Vec<_>>(); | 72 | let components = meta.split_ascii_whitespace().collect::<Vec<_>>(); |