diff --git a/src/proto_018_Proxford/lib_protocol/test/integration/test_adaptive_issuance_launch.ml b/src/proto_018_Proxford/lib_protocol/test/integration/test_adaptive_issuance_launch.ml index 64b4987bb7aa70939b211e58bbe3b961566c6053..5c23e260aba34933ce8e5955dafc568d238c2e1d 100644 --- a/src/proto_018_Proxford/lib_protocol/test/integration/test_adaptive_issuance_launch.ml +++ b/src/proto_018_Proxford/lib_protocol/test/integration/test_adaptive_issuance_launch.ml @@ -465,26 +465,11 @@ let tests = [ Tztest.tztest "the EMA reaches the vote threshold at the expected level and adaptive \ - issuance launches (vote enabled)" + issuance launches (very low threshold, vote enabled)" `Quick (test_launch 1000000l (* This means that the threshold is set at 0.05% *) 59l); - Tztest.tztest - "the EMA reaches the vote threshold at the expected level and adaptive \ - issuance does not launch (vote disabled)" - `Quick - (test_does_not_launch_without_feature_flag - 1000000l (* This means that the threshold is set at 0.05% *) - 59l); - ] - -(* These tests have been unplugged because they are too long for the - CI (more than 3 minutes). For unit tests of the fact that the 80% - threshold can be reached by iteration of the EMA update function, - see ../unit/test_adaptive_issuance_ema.ml *) -let _unplugged_tests = - [ Tztest.tztest "the EMA reaches the vote threshold at the expected level and adaptive \ issuance launches (realistic threshold, vote enabled)" @@ -496,6 +481,13 @@ let _unplugged_tests = (* This vote duration is consistent with the result of the unit test for this EMA in ../unit/test_adaptive_issuance_ema.ml*)); + Tztest.tztest + "the EMA reaches the vote threshold at the expected level and adaptive \ + issuance does not launch (very low threshold, vote disabled)" + `Quick + (test_does_not_launch_without_feature_flag + 1000000l (* This means that the threshold is set at 0.05% *) + 59l); Tztest.tztest "the EMA reaches the vote threshold at the expected level and adaptive \ issuance does not launch (realistic threshold, vote disabled)" diff --git a/src/proto_alpha/lib_protocol/test/integration/test_adaptive_issuance_launch.ml b/src/proto_alpha/lib_protocol/test/integration/test_adaptive_issuance_launch.ml index 74eeb18928b1b960b5c7f0403ab2ba117e548ed6..9af0c2c7c22fce5bac8cbcd7d076daaa4f2f557c 100644 --- a/src/proto_alpha/lib_protocol/test/integration/test_adaptive_issuance_launch.ml +++ b/src/proto_alpha/lib_protocol/test/integration/test_adaptive_issuance_launch.ml @@ -553,26 +553,11 @@ let tests = test_launch_without_vote; Tztest.tztest "the EMA reaches the vote threshold at the expected level and adaptive \ - issuance launches (vote enabled)" + issuance launches (very low threshold, vote enabled)" `Quick (test_launch 1000000l (* This means that the threshold is set at 0.05% *) 88l); - Tztest.tztest - "the EMA reaches the vote threshold at the expected level and adaptive \ - issuance does not launch (vote disabled)" - `Quick - (test_does_not_launch_without_feature_flag - 1000000l (* This means that the threshold is set at 0.05% *) - 88l); - ] - -(* These tests have been unplugged because they are too long for the - CI (more than 3 minutes). For unit tests of the fact that the 80% - threshold can be reached by iteration of the EMA update function, - see ../unit/test_adaptive_issuance_ema.ml *) -let _unplugged_tests = - [ Tztest.tztest "the EMA reaches the vote threshold at the expected level and adaptive \ issuance launches (realistic threshold, vote enabled)" @@ -584,6 +569,13 @@ let _unplugged_tests = (* This vote duration is consistent with the result of the unit test for this EMA in ../unit/test_adaptive_issuance_ema.ml*)); + Tztest.tztest + "the EMA reaches the vote threshold at the expected level and adaptive \ + issuance does not launch (very low threshold, vote disabled)" + `Quick + (test_does_not_launch_without_feature_flag + 1000000l (* This means that the threshold is set at 0.05% *) + 88l); Tztest.tztest "the EMA reaches the vote threshold at the expected level and adaptive \ issuance does not launch (realistic threshold, vote disabled)"