Skip to content
This repository has been archived by the owner on Aug 2, 2024. It is now read-only.

Commit

Permalink
Remove unnecessary test ignores
Browse files Browse the repository at this point in the history
  • Loading branch information
edisontim committed Nov 27, 2023
1 parent 9a9601f commit 042012d
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions starknet-rpc-test/get_transaction_receipt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ async fn get_transaction_receipt(

#[rstest]
#[tokio::test]
#[ignore = "reason"]
async fn work_with_invoke_transaction(madara: &ThreadSafeMadaraClient) -> Result<(), anyhow::Error> {
let rpc = madara.get_starknet_client().await;

Expand Down Expand Up @@ -142,11 +141,8 @@ async fn work_with_declare_transaction(madara: &ThreadSafeMadaraClient) -> Resul
Ok(MaybePendingTransactionReceipt::Receipt(TransactionReceipt::Declare(d1))) => d1,
_ => panic!("expected declare transaction receipt"),
};
// assert_eq!(d1.transaction_hash, d2.transaction_hash);
assert_eq!(d1.actual_fee, d2.actual_fee);
assert_eq!(d1.finality_status, d2.finality_status);
assert_eq!(d1.block_hash, d2.block_hash);
assert_eq!(d1.block_number, d2.block_number);
assert_eq_msg_to_l1(d1.messages_sent, d2.messages_sent);
assert_eq_event(d1.events, d2.events);
// assert_matches does not accept d2.execution_result on the RHS
Expand Down Expand Up @@ -190,7 +186,6 @@ async fn work_with_declare_transaction(madara: &ThreadSafeMadaraClient) -> Resul

#[rstest]
#[tokio::test]
#[ignore = "reason"]
async fn work_with_deploy_account_transaction(madara: &ThreadSafeMadaraClient) -> Result<(), anyhow::Error> {
let rpc = madara.get_starknet_client().await;

Expand Down Expand Up @@ -261,7 +256,6 @@ async fn work_with_deploy_account_transaction(madara: &ThreadSafeMadaraClient) -

#[rstest]
#[tokio::test]
#[ignore = "reason"]
async fn ensure_transfer_fee_event_not_messed_up_with_similar_transfer(
madara: &ThreadSafeMadaraClient,
) -> Result<(), anyhow::Error> {
Expand Down Expand Up @@ -327,7 +321,6 @@ async fn ensure_transfer_fee_event_not_messed_up_with_similar_transfer(

#[rstest]
#[tokio::test]
#[ignore = "reason"]
async fn fail_invalid_transaction_hash(madara: &ThreadSafeMadaraClient) -> Result<(), anyhow::Error> {
let rpc = madara.get_starknet_client().await;

Expand Down

0 comments on commit 042012d

Please sign in to comment.