mirror of
https://github.com/rosenpass/rosenpass.git
synced 2026-02-27 22:13:12 -08:00
fix(API): Tests failing on mac
This commit is contained in:
@@ -211,9 +211,10 @@ fn api_integration_api_setup() -> anyhow::Result<()> {
|
|||||||
break e;
|
break e;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
// NotConnected happens on Mac
|
||||||
assert!(matches!(
|
assert!(matches!(
|
||||||
err.io_error_kind(),
|
err.io_error_kind(),
|
||||||
K::ConnectionReset | K::BrokenPipe
|
K::ConnectionReset | K::BrokenPipe | K::NotConnected
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user