Skip to content

Commit

Permalink
Added min/max limit check for temperature in sysman temperature CTS
Browse files Browse the repository at this point in the history
Related-To: VLCLJ-2296
  • Loading branch information
harinik124 committed Sep 20, 2024
1 parent ab306e0 commit 50fea4a
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,8 @@ TEST_F(TEMPERATURE_TEST,
for (auto temp_handle : temp_handles) {
ASSERT_NE(nullptr, temp_handle);
auto temp = lzt::get_temp_state(temp_handle);
EXPECT_GT(temp, 0);
EXPECT_GT(temp, 10);
EXPECT_LT(temp, 125);
}
}
}
Expand Down

0 comments on commit 50fea4a

Please sign in to comment.