aboutsummaryrefslogtreecommitdiff
path: root/src/testing.zig
diff options
context:
space:
mode:
authorAnhgelus Morhtuuzh <william@herges.fr>2026-04-30 19:20:16 +0200
committerAnhgelus Morhtuuzh <william@herges.fr>2026-04-30 19:20:16 +0200
commita9e8d0e9c929bec830b086e473ef1362e1f873d9 (patch)
tree9ff2e2c2f49f5ca918c976dde000e0ee61a7b8bf /src/testing.zig
parenta36f5482ad90d6899d56e016666a2ca09240abd6 (diff)
refactor(typst): generalize template
Diffstat (limited to 'src/testing.zig')
-rw-r--r--src/testing.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testing.zig b/src/testing.zig
index 143d6ca..5bab88b 100644
--- a/src/testing.zig
+++ b/src/testing.zig
@@ -53,7 +53,7 @@ pub fn doMath(comptime parse: ParserFn, parent: Allocator, t: []const u8, v: []c
if ((std.mem.startsWith(u8, g_it, "xlink:href=") and std.mem.startsWith(u8, g_it, "xlink:href")) or
(std.mem.startsWith(u8, g_it, "id=") and std.mem.startsWith(u8, v_it, "id="))) continue;
if (!std.mem.eql(u8, g_it, v_it)) {
- std.debug.print("not the same: {s} vs {s}", .{ g_it, v_it });
+ std.debug.print("not the same: {s} vs {s}\n", .{ g_it, v_it });
break :blk false;
}
}