Skip to content

Commit d5ab318

Browse files
committed
Don't use printf
1 parent d704d02 commit d5ab318

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/app/map.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ class MapTest : public TestGroup
8888

8989
TEST_CASE("Map of enum MapKey => String")
9090
{
91-
Serial.printf(_F("enumMap[%lu]\n"), enumMap.length());
91+
Serial << _F("enumMap[") << enumMap.length() << "]" << endl;
9292

9393
Serial.println(_F(" for-loop:"));
9494
for(unsigned i = 0; i < enumMap.length(); ++i) {

0 commit comments

Comments
 (0)