Skip to content

Commit

Permalink
clipilicious
Browse files Browse the repository at this point in the history
Signed-off-by: Jim Crossley <[email protected]>
  • Loading branch information
jcrossley3 committed Jan 21, 2025
1 parent c9b7fe4 commit 1c1f900
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/ingestor/src/service/format.rs
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ mod test {
assert!(matches!(Format::from_bytes(&spdx), Ok(Format::SPDX)));

let indigestable = document_bytes("indigestable.json").await?;
assert!(matches!(Format::from_bytes(&indigestable), Err(_)));
assert!(Format::from_bytes(&indigestable).is_err());

let cwe = document_read("cwec_latest.xml.zip")?;
let mut cwe = ZipArchive::new(cwe)?;
Expand Down

1 comment on commit 1c1f900

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Performance Alert ⚠️

Possible performance regression was detected for benchmark.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 2.

Benchmark suite Current: 1c1f900 Previous: e3783b2 Ratio
Ingest DS3 1 s 0 s +∞

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.