File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
aptos-move/framework/aptos-framework/sources Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ module aptos_framework::system_addresses {
91
91
#[test(aptos_framework = @0x1 , core_resources = @0xA550C18 )]
92
92
public entry fun test_core_resource_check_returns_false_with_flag_enabled (aptos_framework: signer , core_resources: address ) {
93
93
// Enable the feature flag for testing
94
- std:: features :: change_feature_flags_for_testing (&aptos_framework, vector [222 ], vector []);
94
+ change_feature_flags_for_testing (&aptos_framework, vector [222 ], vector []);
95
95
96
96
// Assert that is_core_resource_address returns false
97
97
assert !(!is_core_resource_address (core_resources), 0 );
@@ -100,7 +100,7 @@ module aptos_framework::system_addresses {
100
100
#[test(aptos_framework = @0x1 , core_resources = @0xA550C18 )]
101
101
public entry fun test_core_resource_check_returns_true_without_flag (aptos_framework: signer , core_resources: address ) {
102
102
// Disable the feature flag for testing
103
- std:: features :: change_feature_flags_for_testing (&aptos_framework, vector [], vector [222 ]);
103
+ change_feature_flags_for_testing (&aptos_framework, vector [], vector [222 ]);
104
104
105
105
// Assert that is_core_resource_address returns true
106
106
assert !(is_core_resource_address (core_resources), 0 );
You can’t perform that action at this time.
0 commit comments