summaryrefslogtreecommitdiffstats
path: root/tests/auto/unit/qaudioformat/tst_qaudioformat.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/unit/qaudioformat/tst_qaudioformat.cpp')
-rw-r--r--tests/auto/unit/qaudioformat/tst_qaudioformat.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/unit/qaudioformat/tst_qaudioformat.cpp b/tests/auto/unit/qaudioformat/tst_qaudioformat.cpp
index ee1651304..22a5dc135 100644
--- a/tests/auto/unit/qaudioformat/tst_qaudioformat.cpp
+++ b/tests/auto/unit/qaudioformat/tst_qaudioformat.cpp
@@ -323,10 +323,10 @@ void tst_QAudioFormat::debugOperator_data()
// A small sampling
QAudioFormat f;
+ f.setByteOrder(QAudioFormat::LittleEndian);
QTest::newRow("plain") << f << QString::fromLatin1("QAudioFormat(-1Hz, -1bit, channelCount=-1, sampleType=Unknown, byteOrder=LittleEndian, codec=\"\") ");
f.setSampleRate(22050);
- f.setByteOrder(QAudioFormat::LittleEndian);
f.setChannelCount(4);
f.setCodec("audio/pcm");
f.setSampleType(QAudioFormat::Float);