Skip to content

Commit

Permalink
fix format issue
Browse files Browse the repository at this point in the history
  • Loading branch information
asr2003 authored Dec 18, 2024
1 parent ea67cec commit c1bf8c1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion nativelink-util/tests/resource_info_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -726,7 +726,10 @@ async fn test_supported_digest_functions() -> Result<(), Box<dyn std::error::Err
#[nativelink_test]
async fn test_unsupported_digest_functions() -> Result<(), Box<dyn std::error::Error>> {
assert_eq!(is_supported_digest_function("sha3"), false);
assert_eq!(is_supported_digest_function("invalid_digest_function"), false);
assert_eq!(
is_supported_digest_function("invalid_digest_function"),
false
);
assert_eq!(is_supported_digest_function("boo"), false);
assert_eq!(is_supported_digest_function("random_hash"), false);

Expand Down

0 comments on commit c1bf8c1

Please sign in to comment.