diff --git a/src/content/docs/en/development/testing.mdx b/src/content/docs/en/development/testing.mdx
index 1168c4d..cf2293d 100644
--- a/src/content/docs/en/development/testing.mdx
+++ b/src/content/docs/en/development/testing.mdx
@@ -59,9 +59,22 @@ mount /dev/mapper/crypted /mnt
```
-Format and mount the boot partition:
+Format the boot partition:
+
+
```shell
mkfs.fat -F 32 -n BOOT /dev/sda1
+```
+
+
+```shell
+mkfs.ext4 /dev/sda1
+```
+
+
+
+and mount it:
+```shell
mount --mkdir /dev/sda1 /mnt/boot
```
Format the swap partition
@@ -173,4 +186,4 @@ Finally, run the Athena Nix installation:
```shell
nix-shell -p nixos-install-tools --run "nixos-install --no-root-password --cores 2 --max-jobs 16 --keep-going"
```
-
\ No newline at end of file
+