diff --git a/mobile_verifier/tests/integrations/common/mod.rs b/mobile_verifier/tests/integrations/common/mod.rs index 39c38ea11..d384d9fc5 100644 --- a/mobile_verifier/tests/integrations/common/mod.rs +++ b/mobile_verifier/tests/integrations/common/mod.rs @@ -134,7 +134,6 @@ impl MockFileSinkReceiver { pub async fn receive_gateway_reward(&mut self) -> GatewayReward { match self.receive("receive_gateway_reward").await { Some(mobile_reward) => { - // println!("mobile_reward: {:?}", mobile_reward); match mobile_reward.reward { Some(MobileReward::GatewayReward(r)) => r, _ => panic!("failed to get gateway reward"), @@ -147,7 +146,6 @@ impl MockFileSinkReceiver { pub async fn receive_service_provider_reward(&mut self) -> ServiceProviderReward { match self.receive("receive_service_provider_reward").await { Some(mobile_reward) => { - // println!("mobile_reward: {:?}", mobile_reward); match mobile_reward.reward { Some(MobileReward::ServiceProviderReward(r)) => r, _ => panic!("failed to get service provider reward"), @@ -160,7 +158,6 @@ impl MockFileSinkReceiver { pub async fn receive_subscriber_reward(&mut self) -> SubscriberReward { match self.receive("receive_subscriber_reward").await { Some(mobile_reward) => { - // println!("mobile_reward: {:?}", mobile_reward); match mobile_reward.reward { Some(MobileReward::SubscriberReward(r)) => r, _ => panic!("failed to get subscriber reward"), @@ -173,7 +170,6 @@ impl MockFileSinkReceiver { pub async fn receive_promotion_reward(&mut self) -> PromotionReward { match self.receive("receive_promotion_reward").await { Some(mobile_reward) => { - // println!("mobile_reward: {:?}", mobile_reward); match mobile_reward.reward { Some(MobileReward::PromotionReward(r)) => r, _ => panic!("failed to get promotion reward"), @@ -186,7 +182,6 @@ impl MockFileSinkReceiver { pub async fn receive_unallocated_reward(&mut self) -> UnallocatedReward { match self.receive("receive_unallocated_reward").await { Some(mobile_reward) => { - // println!("mobile_reward: {:?}", mobile_reward); match mobile_reward.reward { Some(MobileReward::UnallocatedReward(r)) => r, _ => panic!("failed to get unallocated reward"),