From 835996a6b862ab57872974b86ad5817fd9a622bc Mon Sep 17 00:00:00 2001 From: James Wilson Date: Wed, 6 Dec 2023 17:16:46 +0000 Subject: [PATCH] only ignore failing test on unstable-backend-client --- testing/integration-tests/src/full_client/client/mod.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/testing/integration-tests/src/full_client/client/mod.rs b/testing/integration-tests/src/full_client/client/mod.rs index d5f31a792e..3f880cefa0 100644 --- a/testing/integration-tests/src/full_client/client/mod.rs +++ b/testing/integration-tests/src/full_client/client/mod.rs @@ -204,8 +204,9 @@ async fn external_signing() { .unwrap(); } +// TODO: Investigate and fix this test failure when using the UnstableBackend. +#[cfg(not(feature = "unstable-backend-client"))] #[tokio::test] -#[ignore = "This currently fails sporadically with unstable-backend-client; needs investigation"] async fn submit_large_extrinsic() { let ctx = test_context().await; let api = ctx.client();