aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/nkeys.zig4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/nkeys.zig b/src/nkeys.zig
index 23594a0..e8df83d 100644
--- a/src/nkeys.zig
+++ b/src/nkeys.zig
@@ -522,5 +522,9 @@ test {
522test { 522test {
523 var creds_bytes = try std.fs.cwd().readFileAlloc(testing.allocator, "fixtures/test.creds", std.math.maxInt(usize)); 523 var creds_bytes = try std.fs.cwd().readFileAlloc(testing.allocator, "fixtures/test.creds", std.math.maxInt(usize));
524 defer testing.allocator.free(creds_bytes); 524 defer testing.allocator.free(creds_bytes);
525
526 // TODO(rutgerbrf): validate the contents of the results of these functions
525 _ = try parseDecoratedUserNKey(creds_bytes); 527 _ = try parseDecoratedUserNKey(creds_bytes);
528 _ = try parseDecoratedJwt(creds_bytes);
526} 529}
530