From cfceb5b62e4325e436a606adab7cf07d4b31d05c Mon Sep 17 00:00:00 2001 From: OusmBlueNinja <89956790+OusmBlueNinja@users.noreply.github.com> Date: Wed, 16 Apr 2025 22:25:16 -0500 Subject: [PATCH] Updated Tests --- src/test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test.cpp b/src/test.cpp index f4c0ce8..34be1d8 100644 --- a/src/test.cpp +++ b/src/test.cpp @@ -40,7 +40,7 @@ void print_test(const std::string& name, double std_t, double fast_t) { const char* status_str = passed ? "[PASS]" : "[FAIL]"; cout << status_col << status_str << COLOR_RESET - << ' ' << std::left << std::setw(25) << name + << ' ' << std::left << std::setw(27) << name << " | std: " << std::right << std::setw(7) << fixed << setprecision(2) << std_t << "ms" << " | fast: " << setw(7) << fast_t << "ms" << " | x" << status_col << setw(5) << fixed << setprecision(2) << speedup << COLOR_RESET