1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-23 16:25:31 +03:00

Removing redundant test (scenario is covered by other tests).

This commit is contained in:
Dominic Clifton 2014-05-05 17:09:29 +01:00
parent ddd322fb9f
commit 8999752cf0

View file

@ -84,15 +84,6 @@ TEST(FlightImuTest, IsThrustFacingDownwards)
}
}
TEST(FlightImuTest, IsThrustFacingUpwards)
{
angleInclinations_t angleInclinations = { { 800, 800 } };
bool result = isThrustFacingDownwards(&angleInclinations);
EXPECT_EQ(false, result);
}
// STUBS
uint16_t acc_1G;