Skip to content

Commit de3a64c

Browse files
committed
back out
1 parent 7e53b33 commit de3a64c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

include/xrpl/beast/unit_test/suite.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,7 @@ void
504504
suite::fail(std::string const& reason, std::source_location const& loc)
505505
{
506506
propagate_abort();
507-
runner_->fail(reason, loc.file_name(), loc.line());
507+
runner_->fail(reason);
508508
if (abort_)
509509
{
510510
aborted_ = true;

src/test/app/Vault_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4978,7 +4978,7 @@ class Vault_test : public beast::unit_test::suite
49784978
{
49794979
tx[sfAssetsMaximum] = "18446744073709551617e5"; // uint64 max + 1
49804980
env(tx, THISLINE);
4981-
fail("Expected parse_error for mantissa larger than uint64 max");
4981+
BEAST_EXPECT(false, "Expected parse_error for mantissa larger than uint64 max");
49824982
}
49834983
catch (parse_error const& e)
49844984
{

0 commit comments

Comments
 (0)