Skip to content

Commit

Permalink
[CI] Fix uninitialized checked variable
Browse files Browse the repository at this point in the history
  • Loading branch information
polldo committed Nov 3, 2020
1 parent 561e26d commit d6b7f8a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ TEST_CASE("BLE test raw data", "[ArduinoBLE::BLEAdvertisingData]")
uint8_t data[] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32 };
advData.setRawData(data, sizeof(data));
retVal = advData.setRawData(data, sizeof(data));
REQUIRE(!retVal);
advData.clear();
}
Expand Down

0 comments on commit d6b7f8a

Please sign in to comment.