Update the dump test to check for the dumpUid dumpCreation task details

This commit is contained in:
Kerollmops
2022-11-23 14:48:39 +01:00
parent 8443554b1f
commit 7093bae131
2 changed files with 6 additions and 5 deletions

View File

@ -487,10 +487,8 @@ impl IndexScheduler {
assert_ne!(status, Status::Succeeded);
}
}
Details::Dump { dump_uid: d1 } => {
assert!(
matches!(&kind, KindWithContent::DumpCreation { dump_uid: d2, keys: _, instance_uid: _ } if &d1 == d2 )
);
Details::Dump { dump_uid: _ } => {
assert_eq!(kind.as_kind(), Kind::DumpCreation);
}
}
}