File tree 3 files changed +3
-2
lines changed
proptest-regressions/number
3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 5
5
# It is recommended to check this file in to source control so that
6
6
# everyone who runs the test benefits from these saved cases.
7
7
cc 68154e0c90b20374781d3e3932bddb80e8c6a97901d0331bbd7e6daa75b794cb # shrinks to s = "0e"
8
+ cc d31506b74ad24a80485adb176039e2fa82cf58798738288a2c810952c68d7600 # shrinks to s = "inf"
Original file line number Diff line number Diff line change @@ -2111,7 +2111,7 @@ mod tests {
2111
2111
2112
2112
#[ cfg( feature = "std" ) ]
2113
2113
fn parse_f64 ( i : & str ) -> IResult < & str , f64 , ( ) > {
2114
- match recognize_float ( i) {
2114
+ match recognize_float_or_exceptions ( i) {
2115
2115
Err ( e) => Err ( e) ,
2116
2116
Ok ( ( i, s) ) => {
2117
2117
if s. is_empty ( ) {
Original file line number Diff line number Diff line change @@ -2191,7 +2191,7 @@ mod tests {
2191
2191
#[ cfg( feature = "std" ) ]
2192
2192
fn parse_f64 ( i : & str ) -> IResult < & str , f64 , ( ) > {
2193
2193
use crate :: traits:: ParseTo ;
2194
- match recognize_float ( i) {
2194
+ match recognize_float_or_exceptions ( i) {
2195
2195
Err ( e) => Err ( e) ,
2196
2196
Ok ( ( i, s) ) => {
2197
2197
if s. is_empty ( ) {
You can’t perform that action at this time.
0 commit comments