fixed ci issue yet again

This commit is contained in:
Matthias Wuketich 2025-06-04 01:11:58 +02:00
parent 2d83ec9926
commit 66cdcd7188

View File

@ -707,7 +707,7 @@ mod test {
let v = assets.add(SubText { text: one.into() }).id(); let v = assets.add(SubText { text: one.into() }).id();
let w = assets.add(SubText { text: two.into() }).id(); let w = assets.add(SubText { text: two.into() }).id();
let [x, y] = assets.get_many_mut([v.into(), w.into()]).unwrap(); let [x, y] = assets.get_many_mut([v, w]).unwrap();
assert_eq!(x.unwrap().text, one); assert_eq!(x.unwrap().text, one);
assert_eq!(y.unwrap().text, two); assert_eq!(y.unwrap().text, two);
} }