Skip to content
Snippets Groups Projects
Commit a4b0159d authored by Nat Goodspeed's avatar Nat Goodspeed
Browse files

DRTVWR-418: Adjust HttpStatus::toHex() test for 64-bit result.

parent 93268cb4
No related branches found
No related tags found
No related merge requests found
...@@ -244,7 +244,11 @@ void HttpStatusTestObjectType::test<7>() ...@@ -244,7 +244,11 @@ void HttpStatusTestObjectType::test<7>()
HttpStatus status(404); HttpStatus status(404);
std::string msg = status.toHex(); std::string msg = status.toHex();
// std::cout << "Result: " << msg << std::endl; // std::cout << "Result: " << msg << std::endl;
ensure(msg == "01940001"); #if ADDRESS_SIZE == 32
ensure_equals(msg, "01940001");
#else
ensure_equals(msg, "19400000001");
#endif
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment