Skip to content

Commit

Permalink
Fix tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
emmiegit committed Oct 20, 2023
1 parent 2fe3b0a commit 16b1958
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion deepwell/src/services/blob/mime.rs
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ async fn mime_request() {
const TAR_GZIP: &[u8] =
b"\x1f\x8b\x08\x08\xb1\xb7\x8f\x62\x00\x03\x78\x00\x03\x00\x00\x00\x00";

let mime = MimeAnalyzer::spawn().expect("MIME analyzer job did not start");
let mime = MimeAnalyzer::spawn();

macro_rules! check {
($bytes:expr, $expected:expr $(,)?) => {{
Expand Down
1 change: 1 addition & 0 deletions deepwell/src/web/fetch_direction.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ use strum_macros::EnumIter;
PartialEq,
Eq,
)]
#[serde(rename_all = "kebab-case")]
pub enum FetchDirection {
/// Retrieves items prior (earlier) to this one.
Before,
Expand Down

0 comments on commit 16b1958

Please sign in to comment.