Reversed renaming function to avoid upversioning

This commit is contained in:
Angel Cascarino
2022-01-11 17:57:18 +00:00
parent 45ab345521
commit c60da7fd82
5 changed files with 5 additions and 5 deletions

View File

@@ -59,7 +59,7 @@ void test_validate_report( void ) {
}
void test_reportid_in_use( void ) {
unsigned reportIdInUse = hidAreReportIdsInUse();
unsigned reportIdInUse = hidIsReportIdInUse();
TEST_ASSERT_EQUAL_UINT( 1, reportIdInUse );
}

View File

@@ -46,7 +46,7 @@ void test_validate_report( void ) {
}
void test_reportid_in_use( void ) {
unsigned reportIdInUse = hidAreReportIdsInUse();
unsigned reportIdInUse = hidIsReportIdInUse();
TEST_ASSERT_EQUAL_UINT( 0, reportIdInUse );
}