summaryrefslogtreecommitdiff
path: root/src/PropsData.zig
diff options
context:
space:
mode:
authorGravatar Sam Atman2025-04-29 15:32:58 -0400
committerGravatar Sam Atman2025-04-29 15:32:58 -0400
commit35f18e584fae890f686eafcdc12a2fde6281206d (patch)
tree4006551bfb221e80fb6c9173383ce48f308c4512 /src/PropsData.zig
parentAdd result.toOwned() to Normalize.zig (diff)
downloadzg-35f18e584fae890f686eafcdc12a2fde6281206d.tar.gz
zg-35f18e584fae890f686eafcdc12a2fde6281206d.tar.xz
zg-35f18e584fae890f686eafcdc12a2fde6281206d.zip
Add general tests step
After a considerable slog, all tests are reachable from the test step, and pass. Almost every failure was related to the change away from the inclusion of an allocator on this or that.
Diffstat (limited to 'src/PropsData.zig')
-rw-r--r--src/PropsData.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/PropsData.zig b/src/PropsData.zig
index 09c69c7..46920be 100644
--- a/src/PropsData.zig
+++ b/src/PropsData.zig
@@ -141,7 +141,7 @@ pub fn isDecimal(self: Self, cp: u21) bool {
141 141
142test "Props" { 142test "Props" {
143 const self = try init(testing.allocator); 143 const self = try init(testing.allocator);
144 defer self.deinit(); 144 defer self.deinit(testing.allocator);
145 145
146 try testing.expect(self.isHexDigit('F')); 146 try testing.expect(self.isHexDigit('F'));
147 try testing.expect(self.isHexDigit('a')); 147 try testing.expect(self.isHexDigit('a'));