Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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'

Expand Down
14 changes: 0 additions & 14 deletions zingo-netutils/src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down