test: make valgrind happy (#3916)

Missing a call to MAKE_VALGRIND_HAPPY() to silence valgrind output.
This commit is contained in:
Trevor Norris 2023-03-03 13:52:31 -07:00 committed by GitHub
parent 780b40ea7b
commit 460accf9be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4513,6 +4513,7 @@ TEST_IMPL(fs_statfs) {
uv_run(loop, UV_RUN_DEFAULT);
ASSERT(statfs_cb_count == 2);
MAKE_VALGRIND_HAPPY();
return 0;
}