updated Cargo.toml, edited exercises/tests4.rs to comply with guidelines

changed

> //TODO

to

> // TODO
This commit is contained in:
DnOnith 2026-03-03 22:40:14 +01:00
parent 0d69c6b296
commit 5d8d1803a8
2 changed files with 3 additions and 1 deletions

View File

@ -140,6 +140,8 @@ bin = [
{ name = "tests2_sol", path = "../solutions/17_tests/tests2.rs" }, { name = "tests2_sol", path = "../solutions/17_tests/tests2.rs" },
{ name = "tests3", path = "../exercises/17_tests/tests3.rs" }, { name = "tests3", path = "../exercises/17_tests/tests3.rs" },
{ name = "tests3_sol", path = "../solutions/17_tests/tests3.rs" }, { name = "tests3_sol", path = "../solutions/17_tests/tests3.rs" },
{ name = "tests4", path = "../exercises/17_tests/tests4.rs" },
{ name = "tests4_sol", path = "../solutions/17_tests/tests4.rs" },
{ name = "iterators1", path = "../exercises/18_iterators/iterators1.rs" }, { name = "iterators1", path = "../exercises/18_iterators/iterators1.rs" },
{ name = "iterators1_sol", path = "../solutions/18_iterators/iterators1.rs" }, { name = "iterators1_sol", path = "../solutions/18_iterators/iterators1.rs" },
{ name = "iterators2", path = "../exercises/18_iterators/iterators2.rs" }, { name = "iterators2", path = "../exercises/18_iterators/iterators2.rs" },

View File

@ -2,7 +2,7 @@ fn main() {}
#[cfg(test)] #[cfg(test)]
mod tests { mod tests {
//TODO make sure this test does not run // TODO make sure this test does not run
#[test] #[test]
fn ignore_test() { fn ignore_test() {
// Do not change this line // Do not change this line