File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -153,7 +153,7 @@ mod tests {
153153 assert_test_decode ( 1_i64 , Format :: Text ) ?;
154154 assert_test_decode ( 100_i64 , Format :: Text ) ?;
155155 assert_test_decode ( std:: f64:: consts:: PI , Format :: Text ) ?;
156- assert_test_decode ( std:: f64:: consts:: E , Format :: Text ) ?;
156+ assert_test_decode ( - std:: f64:: consts:: E , Format :: Text ) ?;
157157 assert_test_decode ( 0.0_f64 , Format :: Text ) ?;
158158
159159 Ok ( ( ) )
@@ -167,7 +167,7 @@ mod tests {
167167 assert_test_decode ( 1_i64 , Format :: Binary ) ?;
168168 assert_test_decode ( 100_i64 , Format :: Binary ) ?;
169169 assert_test_decode ( std:: f64:: consts:: PI , Format :: Binary ) ?;
170- assert_test_decode ( std:: f64:: consts:: E , Format :: Binary ) ?;
170+ assert_test_decode ( - std:: f64:: consts:: E , Format :: Binary ) ?;
171171 assert_test_decode ( 0.0_f64 , Format :: Binary ) ?;
172172
173173 Ok ( ( ) )
You can’t perform that action at this time.
0 commit comments