From 9b610ee600eb4e7e72c4c145ef3c915a01a263f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Tue, 30 Aug 2022 18:46:36 +0200 Subject: [PATCH] Audio: actually test ImporterFeatures debug printing. And not just a single ImporterFeature. --- src/Magnum/Audio/Test/AbstractImporterTest.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Magnum/Audio/Test/AbstractImporterTest.cpp b/src/Magnum/Audio/Test/AbstractImporterTest.cpp index 650244065..5767bc7bf 100644 --- a/src/Magnum/Audio/Test/AbstractImporterTest.cpp +++ b/src/Magnum/Audio/Test/AbstractImporterTest.cpp @@ -391,8 +391,8 @@ void AbstractImporterTest::debugFeature() { void AbstractImporterTest::debugFeatures() { std::ostringstream out; - Debug{&out} << ImporterFeature::OpenData << ImporterFeatures{}; - CORRADE_COMPARE(out.str(), "Audio::ImporterFeature::OpenData Audio::ImporterFeatures{}\n"); + Debug{&out} << (ImporterFeature::OpenData|ImporterFeature(0xf0)) << ImporterFeatures{}; + CORRADE_COMPARE(out.str(), "Audio::ImporterFeature::OpenData|Audio::ImporterFeature(0xf0) Audio::ImporterFeatures{}\n"); } }}}}