tests/float: fix typos

This commit is contained in:
Kaspar Schleiser 2019-10-23 21:14:15 +02:00
parent e78cf493bc
commit 2e48e1cab1
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ int main(void)
{
double x = 1234567.0 / 1024.0;
puts("Testing floating point arithmetics...\n");
puts("Testing floating point arithmetic...\n");
for (unsigned long i = 0; i < TEST_ITER; i++) {
x += STEP;

View File

@ -14,7 +14,7 @@ TIMEOUT = 45
def testfunc(child):
child.expect_exact("Testing floating point arithmetics...")
child.expect_exact("Testing floating point arithmetic...")
child.expect_exact("[SUCCESS]", timeout=TIMEOUT)