File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -798,7 +798,7 @@ class serializer_test
798798 check_udt (i, " -1" );
799799
800800 double d = 3.12 ;
801- check_udt (d, " 3.12E0 " );
801+ check_udt (d, " 3.12e+00 " );
802802
803803#if defined(BOOST_HAS_INT128) && defined(__GLIBCXX_TYPE_INT_N_0)
804804 boost::int128_type ii =
@@ -838,7 +838,7 @@ class serializer_test
838838#ifdef BOOST_DESCRIBE_CXX14
839839 {
840840 serializer_test_ns::my_struct s{" some string" , 1424 , 12.4 };
841- check_udt (s, R"( {"s":"some string","n":1424,"d":1.24E1 })" );
841+ check_udt (s, R"( {"s":"some string","n":1424,"d":1.24e+01 })" );
842842 }
843843 {
844844 check_udt (
@@ -853,7 +853,7 @@ class serializer_test
853853 check_udt ( v, " 112" );
854854
855855 v = 0.5 ;
856- check_udt ( v, " 5E-1 " );
856+ check_udt ( v, " 5E-01 " );
857857
858858 v = " this is a string" ;
859859 check_udt (v, R"( "this is a string")" );
You can’t perform that action at this time.
0 commit comments