Skip to content

Commit 9c51ac4

Browse files
committed
Removed "off by one" suspect note from UT
Reason: OP confirmed the temp value readings are correct. Signed-off-by: Mateusz Bronk <mbronk@users.noreply.github.com>
1 parent 95e5bc4 commit 9c51ac4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

test/ir_Argo_test.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1502,8 +1502,7 @@ TEST(TestDecodeArgo, Issue2133_90bit_message) {
15021502
EXPECT_TRUE(IRAcUtils::decodeToState(&irsend.capture, &r, &p));
15031503
EXPECT_EQ(stdAc::ac_command_t::kControlCommand, r.command);
15041504

1505-
EXPECT_EQ(21, r.sensorTemperature); // Note: This may be off by 1
1506-
// per the report in #2133
1505+
EXPECT_EQ(21, r.sensorTemperature);
15071506
EXPECT_TRUE(r.iFeel);
15081507
EXPECT_FALSE(r.power);
15091508
EXPECT_EQ(10, r.degrees);

0 commit comments

Comments
 (0)