Skip to content

Commit

Permalink
Review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Dinonard committed Feb 13, 2025
1 parent c7f8b19 commit ebb95ad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pallets/dapp-staking/src/test/tests_types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
// along with Astar. If not, see <http://www.gnu.org/licenses/>.

use astar_primitives::{
dapp_staking::{RankedTier, StandardTierSlots},
dapp_staking::{RankedTier, StandardTierSlots, STANDARD_TIER_SLOTS_ARGS},
Balance,
};
use frame_support::{assert_ok, parameter_types};
Expand Down Expand Up @@ -2828,7 +2828,7 @@ fn tier_params_check_is_ok() {
},
])
.unwrap(),
slot_number_args: (100, 50),
slot_number_args: STANDARD_TIER_SLOTS_ARGS,
};
assert!(params.is_valid());

Expand Down Expand Up @@ -2914,7 +2914,7 @@ fn tier_configuration_basic_tests() {
},
])
.unwrap(),
slot_number_args: (100, 50),
slot_number_args: STANDARD_TIER_SLOTS_ARGS,
};
assert!(params.is_valid(), "Example params must be valid!");

Expand Down

0 comments on commit ebb95ad

Please sign in to comment.