From 3b8deac0a01e2447e0ac44098ab238476c7efa45 Mon Sep 17 00:00:00 2001 From: Patricia Aas Date: Tue, 19 Oct 2021 09:49:15 +0200 Subject: [PATCH] Update README.md --- exercises/25/pacman_ai/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/25/pacman_ai/README.md b/exercises/25/pacman_ai/README.md index 4331a85..9c87b54 100644 --- a/exercises/25/pacman_ai/README.md +++ b/exercises/25/pacman_ai/README.md @@ -58,7 +58,7 @@ and return true if the first parameter is closer from PacMan than the second. Implement [PacManAI::isValidMove](../../../lib/PacManAI.cpp) and test your implementation with the test in [testPacmanAI.cpp](../../../test/testPacmanAI.cpp) called _"Is valid move"_ -To run the tests through CMake change the last line in test/CMakeLists.txt to: +To run the tests through CMake change the last line in [test/CMakeLists.txt](../../../test/CMakeLists.txt) to: ``` add_test(NAME pacman_tests COMMAND pacman_tests)