summaryrefslogtreecommitdiff
path: root/test/helpers.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/helpers.cpp')
-rw-r--r--test/helpers.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/helpers.cpp b/test/helpers.cpp
index 6cb6fdc..c00e786 100644
--- a/test/helpers.cpp
+++ b/test/helpers.cpp
@@ -5,6 +5,7 @@ MemStream::MemStream() : out {nullptr}, len {}, s {open_memstream(&out, &len)} {
MemStream::~MemStream()
{
fclose(s);
+ // NOLINTNEXTLINE(hicpp-no-malloc)
free(out);
}