Swap name and dir to stay consistent with the info file

This commit is contained in:
mo8it 2026-02-26 16:12:08 +01:00
parent 2512701e2f
commit 9011d34987
2 changed files with 3 additions and 3 deletions

View File

@ -106,8 +106,8 @@ impl AppState {
});
Exercise {
dir: exercise_info.dir,
name: exercise_info.name,
dir: exercise_info.dir,
path: exercise_info.path(),
canonical_path,
test: exercise_info.test,
@ -592,8 +592,8 @@ mod tests {
fn dummy_exercise() -> Exercise {
Exercise {
dir: None,
name: "0",
dir: None,
path: String::from("exercises/0.rs"),
canonical_path: None,
test: false,

View File

@ -66,8 +66,8 @@ fn run_bin(
/// See `info_file::ExerciseInfo`
pub struct Exercise {
pub dir: Option<&'static str>,
pub name: &'static str,
pub dir: Option<&'static str>,
/// Path of the exercise file starting with the `exercises/` directory.
pub path: String,
pub canonical_path: Option<String>,