Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update MockEsp.cpp for uint32_t on EspClass::getMaxFreeBlockSize()
  • Loading branch information
mhightower83 committed Jan 7, 2022
commit a5be756f603a1dbdf3c6ff1b2a54cde945a7cb25
2 changes: 1 addition & 1 deletion tests/host/common/MockEsp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ uint32_t EspClass::getFreeHeap()
return 30000;
}

uint16_t EspClass::getMaxFreeBlockSize()
uint32_t EspClass::getMaxFreeBlockSize()
{
return 20000;
}
Expand Down