improved test case for str::any

This commit is contained in:
Kevin Cantu 2012-01-23 03:58:48 -08:00 committed by Niko Matsakis
parent 536dd2f5a7
commit 7608a06b33
1 changed files with 1 additions and 1 deletions

View File

@ -1768,7 +1768,7 @@ mod tests {
assert false == any("ymca", char::is_uppercase);
assert true == any("YMCA", char::is_uppercase);
assert true == any("yMCA", char::is_uppercase);
assert true == any("YMCy", char::is_uppercase);
assert true == any("Ymcy", char::is_uppercase);
}
#[test]