Skip to content

Commit b4a857c

Browse files
committed
fix(markdown): correct digest type in test
1 parent d8c43d4 commit b4a857c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/app/markdown/markdown_data.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,10 @@ mod test {
6666
pull_string: "ubuntu:23.04".to_string(),
6767
image_id: "sha256:f4cdeba72b994748f5eb1f525a70a9cc553b66037ec37e23645fbf3f0f5c160d"
6868
.to_string(),
69-
digest: "sha256:5a828e28de105c3d7821c4442f0f5d1c52dc16acf4999d5f31a3bc0f03f06edd"
70-
.to_string(),
69+
digest: Some(
70+
"sha256:5a828e28de105c3d7821c4442f0f5d1c52dc16acf4999d5f31a3bc0f03f06edd"
71+
.to_string(),
72+
),
7173
base_os: "ubuntu 23.04".to_string(),
7274

7375
total_vulns_found: MarkdownSummaryTable {

0 commit comments

Comments
 (0)