mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 01:07:45 +01:00
[CI-api] Test fix for IDF 5+ (#6918)
This commit is contained in:
parent
67d8c7c691
commit
d604c8ae64
1 changed files with 2 additions and 2 deletions
|
@ -50,12 +50,12 @@ api:
|
||||||
then:
|
then:
|
||||||
- logger.log:
|
- logger.log:
|
||||||
# yamllint disable rule:line-length
|
# 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
|
# yamllint enable rule:line-length
|
||||||
args:
|
args:
|
||||||
- YESNO(bool_arr[0])
|
- YESNO(bool_arr[0])
|
||||||
- bool_arr.size()
|
- bool_arr.size()
|
||||||
- int_arr[0]
|
- (long) int_arr[0]
|
||||||
- int_arr.size()
|
- int_arr.size()
|
||||||
- float_arr[0]
|
- float_arr[0]
|
||||||
- float_arr.size()
|
- float_arr.size()
|
||||||
|
|
Loading…
Reference in a new issue