Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
0xaptosj committed Sep 21, 2023
1 parent 24ad088 commit 336baef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core_v2/sources/v2_config.move
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ module aptos_names_v2::v2_config {
set_max_domain_length(myself, 25);
assert!(max_domain_length() == 25, 3);

assert!(max_number_of_seconds_registered() == SECONDS_PER_YEAR * 2, 4);
assert!(max_number_of_seconds_registered() == SECONDS_PER_YEAR, 4);
set_max_number_of_seconds_registered(myself, SECONDS_PER_YEAR * 5);
assert!(max_number_of_seconds_registered() == SECONDS_PER_YEAR * 5, 4);

Expand Down

0 comments on commit 336baef

Please sign in to comment.