Skip to content

Commit a51bb15

Browse files
committed
Fix extension: .tftp instead of ..tftp
The `with_extension` method adds the dot already.
1 parent 170b7c3 commit a51bb15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/runner/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ pub fn run_test_kernel_with_ramdisk(kernel_binary_path: &str, ramdisk_path: Opti
3131

3232
// create a TFTP folder with the kernel executable and UEFI bootloader for
3333
// UEFI PXE booting
34-
let tftp_path = kernel_path.with_extension(".tftp");
34+
let tftp_path = kernel_path.with_extension("tftp");
3535
uefi_builder.create_pxe_tftp_folder(&tftp_path).unwrap();
3636

3737
run_test_kernel_on_uefi(&gpt_path);

0 commit comments

Comments
 (0)