Skip to content

Commit d62aac1

Browse files
test(delegations): [CON-1696] re-enable mainnet variant delegation system test for cloud engines (#9809)
#9613 has reached mainnet NNS and unblocks the mainnet variant of the delegation system tests for cloud engines.
1 parent 8582a78 commit d62aac1

1 file changed

Lines changed: 1 addition & 7 deletions

File tree

rs/tests/networking/nns_delegation_test.rs

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -778,8 +778,6 @@ fn upgrade_non_nns_subnets_if_necessary(env: &TestEnv) {
778778
.iter()
779779
.copied()
780780
.filter(|t| *t != SubnetType::System)
781-
// TODO(CON-1696): Remove next line when #9613 reaches mainnet NNS
782-
.filter(|t| *t != SubnetType::CloudEngine)
783781
.map(|subnet_type| {
784782
let env = env.clone();
785783
let nns_node = nns_node.clone();
@@ -806,11 +804,7 @@ macro_rules! systest_all_subnet_types {
806804
$group = $group.add_test(systest!($function_name; SubnetType::System));
807805
$group = $group.add_test(systest!($function_name; SubnetType::Application));
808806
$group = $group.add_test(systest!($function_name; SubnetType::VerifiedApplication));
809-
// TODO(CON-1696): Remove this condition (and always run the test for cloud engines) when
810-
// #9613 reaches mainnet NNS
811-
if get_guestos_img_version() == get_guestos_update_img_version() {
812-
$group = $group.add_test(systest!($function_name; SubnetType::CloudEngine));
813-
}
807+
$group = $group.add_test(systest!($function_name; SubnetType::CloudEngine));
814808
};
815809
}
816810

0 commit comments

Comments
 (0)