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); }