Skip to content

Commit c2af9e1

Browse files
Fix test.
1 parent 545f153 commit c2af9e1

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/store.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -294,11 +294,6 @@ fn pod_annotation_unique() -> Result<()> {
294294
pretty_assert_eq!(
295295
store.list_pod()?,
296296
vec![
297-
ModelInfo {
298-
name: None,
299-
version: None,
300-
hash: new_hash,
301-
},
302297
ModelInfo {
303298
name: Some(original_annotation.name.clone()),
304299
version: Some(original_annotation.version.clone()),
@@ -309,6 +304,11 @@ fn pod_annotation_unique() -> Result<()> {
309304
version: None,
310305
hash: original_hash,
311306
},
307+
ModelInfo {
308+
name: None,
309+
version: None,
310+
hash: new_hash,
311+
},
312312
],
313313
"Pod list didn't return 3 expected entries."
314314
);

0 commit comments

Comments
 (0)