summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorSteve Doiel <steved@usnr.com>2015-01-16 16:14:59 -0800
committerSteve Doiel <steved@usnr.com>2015-01-16 16:14:59 -0800
commitcf72c20ca173bbad227e8f70bd68a2dbfb5b2890 (patch)
treec73eaa493e1fb5abf2a27216feca3e78894ec80f /tests
parent53525a037b45ecf4dc29bf6700ad384647541da2 (diff)
Increase precision on large number test
Diffstat (limited to 'tests')
-rw-r--r--tests/test_dom_modify.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_dom_modify.cpp b/tests/test_dom_modify.cpp
index 7863718..85c381e 100644
--- a/tests/test_dom_modify.cpp
+++ b/tests/test_dom_modify.cpp
@@ -753,8 +753,8 @@ TEST_XML(dom_attr_assign_large_number, "<node attr1='' attr2='' />")
node.attribute(STR("attr1")) = std::numeric_limits<float>::max();
node.attribute(STR("attr2")) = std::numeric_limits<double>::max();
- CHECK(test_node(node, STR("<node attr1=\"3.40282e+038\" attr2=\"1.79769e+308\" />"), STR(""), pugi::format_raw) ||
- test_node(node, STR("<node attr1=\"3.40282e+38\" attr2=\"1.79769e+308\" />"), STR(""), pugi::format_raw));
+ CHECK(test_node(node, STR("<node attr1=\"3.40282347e+038\" attr2=\"1.7976931348623157ee+308\" />"), STR(""), pugi::format_raw) ||
+ test_node(node, STR("<node attr1=\"3.40282347e+38\" attr2=\"1.7976931348623157e+308\" />"), STR(""), pugi::format_raw));
}
TEST(dom_node_declaration_name)