From ec48599cacf5452e0020f9ed0ef804261480b94b Mon Sep 17 00:00:00 2001 From: Arya Date: Wed, 14 Aug 2024 07:02:29 -0400 Subject: [PATCH] renames `regtest_submit_blocks` test to avoid name collision with `submit_block` test (#8762) --- zebrad/tests/acceptance.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zebrad/tests/acceptance.rs b/zebrad/tests/acceptance.rs index de6a5264e..c21b0a0e3 100644 --- a/zebrad/tests/acceptance.rs +++ b/zebrad/tests/acceptance.rs @@ -2957,7 +2957,7 @@ fn external_address() -> Result<()> { // TODO: Test this with an NU5 activation height too once config can be serialized. #[tokio::test] #[cfg(feature = "getblocktemplate-rpcs")] -async fn regtest_submit_blocks() -> Result<()> { +async fn regtest_block_templates_are_valid_block_submissions() -> Result<()> { common::regtest::submit_blocks_test().await?; Ok(()) }