From 6990d2183e4e33f29863c44299e79d5bf64219c1 Mon Sep 17 00:00:00 2001 From: jakeg00dwin Date: Mon, 23 Sep 2024 12:04:55 -0700 Subject: [PATCH] Updated to reflect the new function signiture --- tests/load/test_load.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/load/test_load.cpp b/tests/load/test_load.cpp index 0817742..c87ce54 100644 --- a/tests/load/test_load.cpp +++ b/tests/load/test_load.cpp @@ -57,20 +57,20 @@ TEST(test_load, PortAHandlerSuccess) TEST(test_load, HighThreshValid) { - bool result = valid_load(HIGHTHRESH); + bool result = is_valid_load(HIGHTHRESH); CHECK_TRUE(!result); - result = valid_load(HIGHTHRESH - 1); + result = is_valid_load(HIGHTHRESH - 1); CHECK_TRUE(result); } TEST(test_load, LowThreshValid) { - bool result = valid_load(LOWTHRESH); + bool result = is_valid_load(LOWTHRESH); CHECK_TRUE(!result); - result = valid_load(LOWTHRESH + 1); + result = is_valid_load(LOWTHRESH + 1); CHECK_TRUE(result); }