diff --git a/payjoin/contrib/test.sh b/payjoin/contrib/test.sh index df2a3028..d0e949c3 100755 --- a/payjoin/contrib/test.sh +++ b/payjoin/contrib/test.sh @@ -2,5 +2,4 @@ set -e cargo test --locked --package payjoin --verbose --all-features --lib -cargo test --locked --package payjoin --verbose --features=send,receive --test integration -cargo test --locked --package payjoin --verbose --no-default-features --features=send,receive,_danger-local-https,v2,io --test integration +cargo test --locked --package payjoin --verbose --all-features --test integration diff --git a/payjoin/tests/integration.rs b/payjoin/tests/integration.rs index cb71aea4..e51620ed 100644 --- a/payjoin/tests/integration.rs +++ b/payjoin/tests/integration.rs @@ -24,7 +24,6 @@ mod integration { static EXAMPLE_URL: Lazy = Lazy::new(|| Url::parse("https://example.com").expect("Invalid Url")); - #[cfg(not(feature = "v2"))] mod v1 { use log::debug; use payjoin::send::v1::SenderBuilder; @@ -996,7 +995,6 @@ mod integration { } } - #[cfg(not(feature = "v2"))] mod batching { use payjoin::send::v1::SenderBuilder; use payjoin::UriExt;