We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8fc5ba commit 99b9645Copy full SHA for 99b9645
2 files changed
crates/catalog/rest/src/auth/oauth2.rs
@@ -301,7 +301,7 @@ mod tests {
301
"super-secret",
302
"https://auth.example.com/token",
303
);
304
- let debug_str = format!("{:?}", auth);
+ let debug_str = format!("{auth:?}");
305
assert!(!debug_str.contains("super-secret"));
306
}
307
crates/catalog/rest/src/client.rs
@@ -15,6 +15,7 @@
15
// specific language governing permissions and limitations
16
// under the License.
17
18
+use std::collections::HashMap;
19
use std::fmt::{Debug, Formatter};
20
use std::sync::Arc;
21
0 commit comments