Skip to content

Commit

Permalink
temporary(signer): fixup with previous commit if needed
Browse files Browse the repository at this point in the history
  • Loading branch information
dlachaume committed Feb 7, 2025
1 parent 6f08039 commit 9db9430
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions mithril-signer/src/services/aggregator_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1106,10 +1106,9 @@ mod tests {
.expect("Accept-Encoding header not found");

let header_value = accept_encoding_header.clone().1;
header_value.contains("gzip")
&& header_value.contains("br")
&& header_value.contains("deflate")
&& header_value.contains("zstd")
["gzip", "br", "deflate", "zstd"]
.iter()
.all(|&value| header_value.contains(value))
});

then.status(201);
Expand Down

0 comments on commit 9db9430

Please sign in to comment.