diff options
author | Aleksey Kladov <[email protected]> | 2020-06-23 20:45:40 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-06-23 21:51:33 +0100 |
commit | f2f69e75c84014a6173798e95af0baa48df2607e (patch) | |
tree | b0e1476c7c869f38ce3e922088d2d85aa3d70ff9 /crates/test_utils | |
parent | 846ed08fba1331f1ca8d3512e7536c05784ae4bc (diff) |
Minor, rename
Diffstat (limited to 'crates/test_utils')
-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<_>>(); |