Fix autotests expecting a trailing whitespace for qDebug stream
The behavior of QDebug was fixed in qtbase. Update autotests accordingly. Change-Id: I0bbd1b52958c24710f877224158fa30f082941b8 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
This commit is contained in:
committed by
The Qt Project
parent
3da68ff8f2
commit
41d41ceb4a
@@ -1106,11 +1106,11 @@ void tst_QMediaPlayer::testPositionPropertyWatch()
|
||||
|
||||
void tst_QMediaPlayer::debugEnums()
|
||||
{
|
||||
QTest::ignoreMessage(QtDebugMsg, "QMediaPlayer::PlayingState ");
|
||||
QTest::ignoreMessage(QtDebugMsg, "QMediaPlayer::PlayingState");
|
||||
qDebug() << QMediaPlayer::PlayingState;
|
||||
QTest::ignoreMessage(QtDebugMsg, "QMediaPlayer::NoMedia ");
|
||||
QTest::ignoreMessage(QtDebugMsg, "QMediaPlayer::NoMedia");
|
||||
qDebug() << QMediaPlayer::NoMedia;
|
||||
QTest::ignoreMessage(QtDebugMsg, "QMediaPlayer::NetworkError ");
|
||||
QTest::ignoreMessage(QtDebugMsg, "QMediaPlayer::NetworkError");
|
||||
qDebug() << QMediaPlayer::NetworkError;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user