test: use similar-asserts instead of pretty-assertions (#6208)

This commit is contained in:
Matthias Seitz
2024-01-24 13:33:46 +01:00
committed by GitHub
parent 66ac0fdc5b
commit afafe790bb
11 changed files with 18 additions and 39 deletions

View File

@ -182,7 +182,7 @@ pub fn is_flag_type(ftype: &str) -> bool {
#[cfg(test)]
mod tests {
use super::*;
use pretty_assertions::assert_eq;
use similar_asserts::assert_eq;
use syn::parse2;
#[test]