Skip to content

Commit

Permalink
chore(starknet_infra_utils): remove unused test identifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
noamsp-starkware committed Feb 20, 2025
1 parent 7e2a6be commit cf6ee87
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions crates/starknet_infra_utils/src/test_utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ const _: () = {
pub enum TestIdentifier {
EndToEndIntegrationTest,
EndToEndFlowTest,
MempoolSendsTxToOtherPeerTest,
MempoolReceivesTxFromOtherPeerTest,
InfraUnitTests,
}

Expand All @@ -30,9 +28,7 @@ impl From<TestIdentifier> for u16 {
match variant {
TestIdentifier::EndToEndIntegrationTest => 0,
TestIdentifier::EndToEndFlowTest => 1,
TestIdentifier::MempoolSendsTxToOtherPeerTest => 2,
TestIdentifier::MempoolReceivesTxFromOtherPeerTest => 3,
TestIdentifier::InfraUnitTests => 4,
TestIdentifier::InfraUnitTests => 2,
}
}
}
Expand Down

0 comments on commit cf6ee87

Please sign in to comment.