[libcalamares] Fix tests (cell is the lower unicode byte)
This commit is contained in:
parent
be0831ee11
commit
e56948cefa
@ -216,6 +216,8 @@ LibCalamaresTests::testPrintableEntropy()
|
|||||||
for ( QChar c : s )
|
for ( QChar c : s )
|
||||||
{
|
{
|
||||||
QVERIFY( c.isPrint() );
|
QVERIFY( c.isPrint() );
|
||||||
QCOMPARE( c.cell(), 0 );
|
QCOMPARE( c.row(), 0 );
|
||||||
|
QVERIFY( c.cell() > 32 ); // ASCII SPACE
|
||||||
|
QVERIFY( c.cell() < 127 );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user