From 53fa6d73311d57b4071c130eac279590bd6d03ba Mon Sep 17 00:00:00 2001 From: Zakir Jiwani <108548454+JiwaniZakir@users.noreply.github.com> Date: Wed, 18 Mar 2026 22:54:43 +0000 Subject: [PATCH] Enable test runner for modules1 so the added test is actually executed --- rustlings-macros/info.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rustlings-macros/info.toml b/rustlings-macros/info.toml index e42b0f26..ba618d62 100644 --- a/rustlings-macros/info.toml +++ b/rustlings-macros/info.toml @@ -517,7 +517,7 @@ because "blue" is `&str`, not `String`.""" [[exercises]] name = "modules1" dir = "10_modules" -test = false +test = true hint = """ Everything is private in Rust by default. But there's a keyword we can use to make something public!"""