We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0531205 commit d000efeCopy full SHA for d000efe
url/tests/data.rs
@@ -20,17 +20,17 @@ fn urltestdata() {
20
.expect("JSON parse error in urltestdata.json");
21
22
let mut passed = true;
23
- let mut skipNext = false;
+ let mut skip_next = false;
24
for entry in json.as_array_mut().unwrap() {
25
if entry.is_string() {
26
if entry.as_str().unwrap() == "skip next" {
27
- skipNext = true;
+ skip_next = true;
28
}
29
continue; // ignore comments
30
31
32
- if skipNext {
33
- skipNext = false;
+ if skip_next {
+ skip_next = false;
34
continue;
35
36
0 commit comments