Merge "Remove workaround for a fixed bug." into main
diff --git a/tests/libs/CHECK.h b/tests/libs/CHECK.h
index 5870b07..a590233 100644
--- a/tests/libs/CHECK.h
+++ b/tests/libs/CHECK.h
@@ -26,7 +26,7 @@
 static inline void check_failure(const char* file, int line, const char* function,
                                  const char* failed_expression) {
   fprintf(stderr, "%s:%d: %s: assertion \"%s\" failed\n", file, line, function, failed_expression);
-  fflush(stderr);
+  fflush(NULL);
   abort();
 }