proxy: fix intermittent tap match method quickcheck failure (#427)

Closes #413
This commit is contained in:
Sean McArthur 2018-02-23 12:13:51 -08:00 committed by GitHub
parent 304f4e12dd
commit 7365c5645a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -416,7 +416,7 @@ mod tests {
let ok =
b'A' <= c && c <= b'Z' ||
b'a' <= c && c <= b'z' ||
b'0' <= c && c <= b'0' ;
b'0' <= c && c <= b'9' ;
if !ok {
err = Some(InvalidMatch::InvalidHttpMethod);
break;