[librpbase/tests, libromdata/tests] Hexdumps: Add an extra space after the offset.

This commit is contained in:
David Korth 2025-05-22 23:49:10 -04:00
parent fc44e1da01
commit 223cee6c9c
4 changed files with 4 additions and 4 deletions

View File

@ -122,7 +122,7 @@ void CtrKeyScramblerTest::CompareByteArrays(
s_actual += '\n';
}
s_tmp = fmt::format(FSTR("{:0>4X}: "), static_cast<unsigned int>(i));
s_tmp = fmt::format(FSTR("{:0>4X}: "), static_cast<unsigned int>(i));
s_expected += s_tmp;
s_actual += s_tmp;
}

View File

@ -189,7 +189,7 @@ void AesCipherTest::CompareByteArrays(
s_actual += '\n';
}
s_tmp = fmt::format(FSTR("{:0>4X}: "), static_cast<unsigned int>(i));
s_tmp = fmt::format(FSTR("{:0>4X}: "), static_cast<unsigned int>(i));
s_expected += s_tmp;
s_actual += s_tmp;
}

View File

@ -214,7 +214,7 @@ void CBCReaderTest::CompareByteArrays(
s_actual += '\n';
}
s_tmp = fmt::format(FSTR("{:0>4X}: "), static_cast<unsigned int>(i));
s_tmp = fmt::format(FSTR("{:0>4X}: "), static_cast<unsigned int>(i));
s_expected += s_tmp;
s_actual += s_tmp;
}

View File

@ -98,7 +98,7 @@ void HashTest::CompareByteArrays(
s_actual += '\n';
}
s_tmp = fmt::format(FSTR("{:0>4X}: "), static_cast<unsigned int>(i));
s_tmp = fmt::format(FSTR("{:0>4X}: "), static_cast<unsigned int>(i));
s_expected += s_tmp;
s_actual += s_tmp;
}