Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: Fix spectest failure output
Browse files Browse the repository at this point in the history
gumb0 committed Sep 23, 2020
1 parent 33b91b9 commit 459dc11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/spectests/spectests.cpp
Original file line number Diff line number Diff line change
@@ -492,8 +492,8 @@ class test_runner
std::stringstream message;
message << "Incorrect returned value. Expected: " << expected_value.i64 << " (0x"
<< std::hex << expected_value.i64 << ")"
<< " Actual: " << actual_value.i64 << " (0x" << std::hex << actual_value.i64
<< ")";
<< " Actual: " << std::dec << actual_value.i64 << " (0x" << std::hex
<< actual_value.i64 << ")";
fail(message.str());
return false;
}

0 comments on commit 459dc11

Please sign in to comment.