Skip to content

Commit

Permalink
Downgrade the debug output slightly
Browse files Browse the repository at this point in the history
  • Loading branch information
pcolby committed Apr 15, 2023
1 parent b2c43cd commit 3aa111a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/polar/v2/testtrainingsession.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2036,12 +2036,12 @@ void TestTrainingSession::unzip()

const polar::v2::TrainingSession session(QLatin1String("ignored"));

qInfo() << "Default initial buffer size";
qDebug() << "Default initial buffer size";
QByteArray unzipped = session.unzip(data);
QCOMPARE(unzipped.size(), expected.size());
QCOMPARE(unzipped, expected);

qInfo() << "Tiny intitial buffer size";
qDebug() << "Tiny intitial buffer size";
unzipped = session.unzip(data, 1);
QCOMPARE(unzipped.size(), expected.size());
QCOMPARE(unzipped, expected);
Expand Down

0 comments on commit 3aa111a

Please sign in to comment.