diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-03-29 13:33:00 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-29 13:33:00 -0400 |
commit | 03c71a8b4a5e4c451799144eb973402aafe22ea8 (patch) | |
tree | d27b0e11a376ee1559ca3c8abd0cf31f7b273490 /test_util/src | |
parent | d983b577bc903f18028a99d0a40a17322ac80ffe (diff) |
chore: upgrade dprint-core to 0.54.1 (#14146)
Diffstat (limited to 'test_util/src')
-rw-r--r-- | test_util/src/lib.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test_util/src/lib.rs b/test_util/src/lib.rs index 75a8840e3..e865572d2 100644 --- a/test_util/src/lib.rs +++ b/test_util/src/lib.rs @@ -369,9 +369,7 @@ async fn get_tls_config( ), ) .with_single_cert(certs, PrivateKey(key)) - .map_err(|e| { - anyhow!("Error setting cert: {:?}", e); - }) + .map_err(|e| anyhow!("Error setting cert: {:?}", e)) .unwrap(); match http_versions { |