fix: unbreak tests

This commit is contained in:
CJ van den Berg 2024-11-15 22:55:34 +01:00
parent 6040ac5e1f
commit 4e7ccd1e00
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9

View file

@ -465,7 +465,7 @@ const BindingSet = struct {
self.current_sequence.deinit(); self.current_sequence.deinit();
self.current_sequence_egc.deinit(); self.current_sequence_egc.deinit();
self.input_buffer.deinit(); self.input_buffer.deinit();
self.logger.deinit(); if (!builtin.is_test) self.logger.deinit();
self.allocator.free(self.namespace_name); self.allocator.free(self.namespace_name);
self.allocator.free(self.mode_name); self.allocator.free(self.mode_name);
} }