Skip to content

Commit 2bbb923

Browse files
sypharJoshua Nelson
and
Joshua Nelson
authored
Update src/web/sitemap.rs
Co-authored-by: Joshua Nelson <[email protected]>
1 parent f97194e commit 2bbb923

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/web/sitemap.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ mod tests {
220220
assert!(!(content.contains(&"some_random_crate_that_failed")));
221221

222222
// and not in the others
223-
for letter in letters.iter().filter(|&&c| c != 's') {
223+
for letter in ('a'..='z').filter(|&&c| c != 's') {
224224
let response = web
225225
.get(&format!("/-/sitemap/{}/sitemap.xml", letter))
226226
.send()?;

0 commit comments

Comments
 (0)