aboutsummaryrefslogtreecommitdiffstats
path: root/src/nkeys.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/nkeys.zig')
-rw-r--r--src/nkeys.zig3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/nkeys.zig b/src/nkeys.zig
index e8df83d..b8693ae 100644
--- a/src/nkeys.zig
+++ b/src/nkeys.zig
@@ -522,9 +522,8 @@ 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 525
526 // TODO(rutgerbrf): validate the contents of the results of these functions 526 // TODO(rutgerbrf): validate the contents of the results of these functions
527 _ = try parseDecoratedUserNKey(creds_bytes); 527 _ = try parseDecoratedUserNKey(creds_bytes);
528 _ = try parseDecoratedJwt(creds_bytes); 528 _ = try parseDecoratedJwt(creds_bytes);
529} 529}
530