Skip to content

Commit f03869c

Browse files
authored
chore: fix failing test (#10813)
1 parent 0c3dc32 commit f03869c

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

crates/cast/tests/cli/main.rs

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2746,10 +2746,16 @@ Estimated data availability size for block 30558838 with 225 transactions: 52916
27462746

27472747
// <https://github.com/foundry-rs/foundry/issues/10705>
27482748
casttest!(cast_call_return_array_of_tuples, |_prj, cmd| {
2749-
cmd.args(["call", "0x198FC70Dfe05E755C81e54bd67Bff3F729344B9b", "facets() returns ((address,bytes4[])[])", "--rpc-url", "https://rpc.viction.xyz"])
2750-
.assert_success()
2751-
.stdout_eq(str![[r#"
2752-
[(0x9640977264aec6d4e9af381F548eee11b9e27aAe, [0x1f931c1c]), (0x395db83A04cC3d3F6C5eFc73896929Cf10D0F301, [0xcdffacc6, 0x52ef6b2c, 0xadfca15e, 0x7a0ed627, 0x01ffc9a7]), (0xC6F7b47F870024B0E2DF6DFd551E10c4A37A1cEa, [0x23452b9c, 0x7200b829, 0x8da5cb5b, 0xf2fde38b]), (0xc1f27c1f6c87e73e089Ffac23C236Fc4A9E3fccc, [0x1458d7ad, 0xd9caed12]), (0x70e272A93bc8344277a1f4390Ea6153A1D5fe450, [0x536db266, 0xfbb2d381, 0xfcd8e49e, 0x9afc19c7, 0x44e2b18c, 0x2d2506a9, 0x124f1ead, 0xc3a6a96b]), (0x662BCADB7A2CBb22367b2471d8A91E5b13FCe96B, [0x612ad9cb, 0xa4c3366e]), (0x190e03D49Ce76DDabC634a98629EDa6246aB5196, [0xa516f0f3, 0x5c2ed36a]), (0xAF69C0E3BBBf6AdE78f1466f86DfF86d64C8dA2A, [0x4630a0d8]), (0xD1317DA862AC5C145519E60D24372dc186EF7426, [0xd5bcb610, 0x5fd9ae2e, 0x2c57e884, 0x736eac0b, 0x4666fc80, 0x733214a3, 0xaf7060fd]), (0x176f558949e2a7C5217dD9C27Bf7A43c6783ee28, [0x7f99d7af, 0x103c5200, 0xc318eeda, 0xee0aa320, 0xdf1c3a5b, 0x070e81f1, 0xd53482cf, 0xf58ae2ce]), (0x531d69A3fAb6CB56A77B8402E6c217cB9cC902A9, [0xf86368ae, 0x5ad317a4, 0x0340e905, 0x2fc487ae])]
2749+
cmd.args([
2750+
"call",
2751+
"0x198FC70Dfe05E755C81e54bd67Bff3F729344B9b",
2752+
"facets() returns ((address,bytes4[])[])",
2753+
"--rpc-url",
2754+
"https://rpc.viction.xyz",
2755+
])
2756+
.assert_success()
2757+
.stdout_eq(str![[r#"
2758+
[[..]]
27532759
27542760
"#]]);
27552761
});

0 commit comments

Comments
 (0)