summaryrefslogtreecommitdiffstatshomepage
path: root/test/tests.zig
diff options
context:
space:
mode:
authorChris Boesch <chrboesch@noreply.codeberg.org>2023-05-01 18:58:07 +0200
committerGitHub <noreply@github.com>2023-05-01 18:58:07 +0200
commite9d0ab3784b163b94c5053254ed0a85b47694972 (patch)
treee4ba580d8f44bece9d003ca45aa0786a7b21fa81 /test/tests.zig
parent2e2924abdb592f536893a0e3ec526e3dd4145de6 (diff)
parenta86d4c279577cb263d83f33d9d9606eeafda05ab (diff)
Merge pull request #270 from perillo/improve-exercise-type
Improve the Exercise type
Diffstat (limited to 'test/tests.zig')
-rw-r--r--test/tests.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tests.zig b/test/tests.zig
index f9ad9c4..8786d91 100644
--- a/test/tests.zig
+++ b/test/tests.zig
@@ -323,7 +323,7 @@ fn heal(allocator: Allocator, exercises: []const Exercise, outdir: []const u8) !
const patches_path = "patches/patches";
for (exercises) |ex| {
- const name = ex.baseName();
+ const name = ex.name();
// Use the POSIX patch variant.
const file = try join(allocator, &.{ exercises_path, ex.main_file });