aboutsummaryrefslogtreecommitdiff
path: root/src/parser.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/parser.zig')
-rw-r--r--src/parser.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser.zig b/src/parser.zig
index b2c0f95..cac395e 100644
--- a/src/parser.zig
+++ b/src/parser.zig
@@ -99,7 +99,7 @@ test "multiple render doc" {
defer arena.deinit();
const alloc = arena.allocator();
- const g = try parse(alloc, "hello *world*");
+ const g = try parse(alloc, "hello *world*!");
const a = try g.renderHTML(alloc);
const b = try g.renderHTML(alloc);
try std.testing.expect(std.mem.eql(u8, a, b));