diff --git a/tests/memory_leak.py b/tests/memory_leak.py
index 75b20db38..d3cb6cf99 100644
--- a/tests/memory_leak.py
+++ b/tests/memory_leak.py
@@ -5,11 +5,11 @@
 import time
 
 # Specify the directory for the binaries
-# DIR_EXAMPLES = "build/examples"
+DIR_EXAMPLES = "build/examples"
 
-# NO_LEAK_OUTPUT = "All heap blocks were freed -- no leaks are possible"
+NO_LEAK_OUTPUT = "All heap blocks were freed -- no leaks are possible"
 
-# VALGRIND_CMD = f"stdbuf -oL -eL valgrind --leak-check=full ./{DIR_EXAMPLES}/"
+VALGRIND_CMD = f"stdbuf -oL -eL valgrind --leak-check=full ./{DIR_EXAMPLES}/"
 
 
 def failure_mode(fail_cmd):