mirror of
https://github.com/XRPLF/rippled.git
synced 2026-04-29 15:37:57 +00:00
test: Run unit tests regardless of 'Supported' amendment status (#5537)
This commit is contained in:
@@ -32,7 +32,7 @@ public:
|
||||
using namespace test::jtx;
|
||||
|
||||
testcase("Set regular key");
|
||||
Env env{*this, supported_amendments() - fixMasterKeyAsRegularKey};
|
||||
Env env{*this, testable_amendments() - fixMasterKeyAsRegularKey};
|
||||
Account const alice("alice");
|
||||
Account const bob("bob");
|
||||
env.fund(XRP(10000), alice, bob);
|
||||
@@ -72,7 +72,7 @@ public:
|
||||
using namespace test::jtx;
|
||||
|
||||
testcase("Set regular key");
|
||||
Env env{*this, supported_amendments() | fixMasterKeyAsRegularKey};
|
||||
Env env{*this, testable_amendments() | fixMasterKeyAsRegularKey};
|
||||
Account const alice("alice");
|
||||
Account const bob("bob");
|
||||
env.fund(XRP(10000), alice, bob);
|
||||
@@ -109,7 +109,7 @@ public:
|
||||
// See https://ripplelabs.atlassian.net/browse/RIPD-1721.
|
||||
testcase(
|
||||
"Set regular key to master key (before fixMasterKeyAsRegularKey)");
|
||||
Env env{*this, supported_amendments() - fixMasterKeyAsRegularKey};
|
||||
Env env{*this, testable_amendments() - fixMasterKeyAsRegularKey};
|
||||
Account const alice("alice");
|
||||
env.fund(XRP(10000), alice);
|
||||
|
||||
@@ -139,7 +139,7 @@ public:
|
||||
|
||||
testcase(
|
||||
"Set regular key to master key (after fixMasterKeyAsRegularKey)");
|
||||
Env env{*this, supported_amendments() | fixMasterKeyAsRegularKey};
|
||||
Env env{*this, testable_amendments() | fixMasterKeyAsRegularKey};
|
||||
Account const alice("alice");
|
||||
env.fund(XRP(10000), alice);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user