fix: remove return type for test function

This commit is contained in:
gaardhus 2025-12-13 17:28:55 +01:00
parent ad09abb363
commit 6816e0fcee
1 changed files with 1 additions and 3 deletions

View File

@ -576,7 +576,7 @@ fn freeze_prefix() -> Result<()> {
}
#[test]
fn freeze_exclude() -> Result<()> {
fn freeze_exclude() {
let context = TestContext::new("3.12");
let prefix = context.temp_dir.child("prefix");
@ -611,6 +611,4 @@ fn freeze_exclude() -> Result<()> {
----- stderr -----
"###
);
Ok(())
}