summaryrefslogtreecommitdiff
path: root/exercises
diff options
context:
space:
mode:
authorJoshua Carlson <61999256+jrcarl624@users.noreply.github.com>2023-08-01 13:33:32 -0400
committerGitHub <noreply@github.com>2023-08-01 13:33:32 -0400
commit828e7246598d2d55ea4b379194120367163e397e (patch)
tree1ef92a965694e803722b8e30da8c0b2475fc141d /exercises
parent11d8aea96f2c744d970ed1ffb38785cf5b511e5e (diff)
Added note related to tests.
Diffstat (limited to 'exercises')
-rw-r--r--exercises/if/if3.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/if/if3.rs b/exercises/if/if3.rs
index 73a7025..0040023 100644
--- a/exercises/if/if3.rs
+++ b/exercises/if/if3.rs
@@ -28,7 +28,7 @@ pub fn animal_habitat(animal: &str) -> &'static str {
habitat
}
-
+// No test changes needed.
#[cfg(test)]
mod tests {
use super::*;