Skip to content

Commit 17b9242

Browse files
committed
Tests: Remove stray todo!()s in resolver test
1 parent 7b52455 commit 17b9242

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tests/taglib/test_fileref.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -243,19 +243,19 @@ fn test_file_resolver() {
243243
}
244244

245245
fn save_to(&self, _: &mut File) -> lofty::Result<()> {
246-
todo!()
246+
unimplemented!()
247247
}
248248

249249
fn properties(&self) -> &Self::Properties {
250-
todo!()
250+
unimplemented!()
251251
}
252252

253253
fn contains_tag(&self) -> bool {
254-
todo!()
254+
unimplemented!()
255255
}
256256

257257
fn contains_tag_type(&self, _: TagType) -> bool {
258-
todo!()
258+
unimplemented!()
259259
}
260260
}
261261

@@ -265,11 +265,11 @@ fn test_file_resolver() {
265265
}
266266

267267
fn primary_tag_type() -> TagType {
268-
todo!()
268+
unimplemented!()
269269
}
270270

271271
fn supported_tag_types() -> &'static [TagType] {
272-
todo!()
272+
unimplemented!()
273273
}
274274

275275
fn guess(_: &[u8]) -> Option<FileType> {

0 commit comments

Comments
 (0)