diff --git a/system-parachains/coretime/coretime-kusama/src/tests.rs b/system-parachains/coretime/coretime-kusama/src/tests.rs index 48e282f086..42f6606793 100644 --- a/system-parachains/coretime/coretime-kusama/src/tests.rs +++ b/system-parachains/coretime/coretime-kusama/src/tests.rs @@ -106,9 +106,6 @@ fn timeslice_period_is_sane() { assert_eq!(timeslice_period_config, TIMESLICE_PERIOD); // Timeslice period constant non-zero - assumption in burning logic. - assert!(TIMESLICE_PERIOD > 0); - - // Timeslice period constant should never be changed by mistake. #[cfg(feature = "fast-runtime")] assert_eq!(TIMESLICE_PERIOD, 20); #[cfg(not(feature = "fast-runtime"))] diff --git a/system-parachains/coretime/coretime-polkadot/src/tests.rs b/system-parachains/coretime/coretime-polkadot/src/tests.rs index eac3e62082..f1de4d2dc9 100644 --- a/system-parachains/coretime/coretime-polkadot/src/tests.rs +++ b/system-parachains/coretime/coretime-polkadot/src/tests.rs @@ -106,9 +106,6 @@ fn timeslice_period_is_sane() { assert_eq!(timeslice_period_config, TIMESLICE_PERIOD); // Timeslice period constant non-zero - assumption in burning logic. - assert!(TIMESLICE_PERIOD > 0); - - // Timeslice period constant should never be changed by mistake. #[cfg(feature = "fast-runtime")] assert_eq!(TIMESLICE_PERIOD, 20); #[cfg(not(feature = "fast-runtime"))]