This commit is contained in:
Vogel, Rick 2023-03-20 16:07:38 +01:00
parent 7e8cb16370
commit d228bcaca2
1 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@ void QskRgbLiterals::qrgbLiterals_data()
QTest::addColumn< QRgb >( "actual" );
QTest::addColumn< QRgb >( "expected" );
using namespace QskRgb::literals::qrgb;
using namespace QskRgb::literals::integral;
QTest::newRow( "\"#123456\"_rgba" ) << "#123456"_rgba << ( QRgb ) 0xFF123456;
QTest::newRow( "\"#123456\"_argb" ) << "#123456"_argb << ( QRgb ) 0xFF123456;
@ -55,7 +55,7 @@ void QskRgbLiterals::qrgbLiterals_data()
void QskRgbLiterals::qrgbLiterals()
{
using namespace QskRgb::literals::qrgb;
using namespace QskRgb::literals::integral;
QFETCH( QRgb, actual );
QFETCH( QRgb, expected );
QCOMPARE( actual, expected );