diff --git a/.github/workflows/ci-pr.yaml b/.github/workflows/ci-pr.yaml index 00a2e17..7244fc6 100644 --- a/.github/workflows/ci-pr.yaml +++ b/.github/workflows/ci-pr.yaml @@ -31,7 +31,7 @@ jobs: uses: zingolabs/infrastructure/.github/actions/cargo-shear@20485fed7a080e381130ed8120419dc81acae641 cargo-checkmate: - uses: zingolabs/infrastructure/.github/workflows/cargo-checkmate.yaml@46d6b15c994835f386973aabbc76a5503760dafe + uses: zingolabs/infrastructure/.github/workflows/cargo-checkmate.yaml@18cce79116589ce88b24310a18ad88e3e3023d7c with: doc-all-features: 'true' diff --git a/zingo-netutils/src/error.rs b/zingo-netutils/src/error.rs index 02f501f..bf9ae76 100644 --- a/zingo-netutils/src/error.rs +++ b/zingo-netutils/src/error.rs @@ -42,20 +42,6 @@ pub enum GetClientError { mod get_client_error_tests { use super::*; - #[test] - fn invalid_scheme() { - let e = GetClientError::InvalidScheme; - assert!(matches!(e, GetClientError::InvalidScheme)); - assert_eq!(e.to_string(), "bad uri: invalid scheme"); - } - - #[test] - fn invalid_authority() { - let e = GetClientError::InvalidAuthority; - assert!(matches!(e, GetClientError::InvalidAuthority)); - assert_eq!(e.to_string(), "bad uri: invalid authority"); - } - #[test] fn transport_from_conversion() { // Verify the From impl exists at compile time.