Skip to content

Commit 72edc98

Browse files
authored
chore: reenable tests (#11748)
1 parent 1cc7cc9 commit 72edc98

File tree

2 files changed

+15
-22
lines changed

2 files changed

+15
-22
lines changed

crates/cast/tests/cli/main.rs

Lines changed: 14 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1790,22 +1790,19 @@ casttest!(tx_to_request_json, |_prj, cmd| {
17901790
"#]]);
17911791
});
17921792

1793-
casttest!(
1794-
#[ignore = "reth is currently slightly broken"]
1795-
tx_using_sender_and_nonce,
1796-
|_prj, cmd| {
1797-
let rpc = "https://reth-ethereum.ithaca.xyz/rpc";
1798-
// <https://etherscan.io/tx/0x5bcd22734cca2385dc25b2d38a3d33a640c5961bd46d390dff184c894204b594>
1799-
let args = vec![
1800-
"tx",
1801-
"--from",
1802-
"0x4648451b5F87FF8F0F7D622bD40574bb97E25980",
1803-
"--nonce",
1804-
"113642",
1805-
"--rpc-url",
1806-
rpc,
1807-
];
1808-
cmd.args(args).assert_success().stdout_eq(str![[r#"
1793+
casttest!(tx_using_sender_and_nonce, |_prj, cmd| {
1794+
let rpc = next_http_archive_rpc_url();
1795+
// <https://etherscan.io/tx/0x5bcd22734cca2385dc25b2d38a3d33a640c5961bd46d390dff184c894204b594>
1796+
let args = vec![
1797+
"tx",
1798+
"--from",
1799+
"0x4648451b5F87FF8F0F7D622bD40574bb97E25980",
1800+
"--nonce",
1801+
"113642",
1802+
"--rpc-url",
1803+
rpc.as_str(),
1804+
];
1805+
cmd.args(args).assert_success().stdout_eq(str![[r#"
18091806
18101807
blockHash 0x29518c1cea251b1bda5949a9b039722604ec1fb99bf9d8124cfe001c95a50bdc
18111808
blockNumber 22287055
@@ -1829,8 +1826,7 @@ value 0
18291826
yParity 1
18301827
...
18311828
"#]]);
1832-
}
1833-
);
1829+
});
18341830

18351831
// ensure receipt or code is required
18361832
casttest!(send_requires_to, |_prj, cmd| {

crates/forge/tests/it/repros.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -415,10 +415,7 @@ test_repro!(10552);
415415
test_repro!(10586);
416416

417417
// https://github.com/foundry-rs/foundry/issues/10957
418-
test_repro!(
419-
#[ignore = "reth is currently slightly broken"]
420-
10957
421-
);
418+
test_repro!(10957);
422419

423420
// https://github.com/foundry-rs/foundry/issues/11353
424421
test_repro!(11353);

0 commit comments

Comments
 (0)