[CI-api] Test fix for IDF 5+ (#6918)

This commit is contained in:
Keith Burzinski 2024-06-17 02:18:04 -05:00 committed by GitHub
parent 67d8c7c691
commit d604c8ae64
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -50,12 +50,12 @@ api:
then:
- logger.log:
# yamllint disable rule:line-length
format: "Bool: %s (%u), Int: %d (%u), Float: %f (%u), String: %s (%u)"
format: "Bool: %s (%u), Int: %ld (%u), Float: %f (%u), String: %s (%u)"
# yamllint enable rule:line-length
args:
- YESNO(bool_arr[0])
- bool_arr.size()
- int_arr[0]
- (long) int_arr[0]
- int_arr.size()
- float_arr[0]
- float_arr.size()