2
0
mirror of https://github.com/catchorg/Catch2 synced 2026-02-21 15:42:11 +00:00

Rename listening reporter to multi reporter

This commit is contained in:
Martin Hořeňovský
2022-01-04 21:48:20 +01:00
parent 244680d512
commit 103cb16696
6 changed files with 38 additions and 38 deletions

View File

@@ -19,7 +19,7 @@
#include <catch2/internal/catch_sharding.hpp>
#include <catch2/internal/catch_textflow.hpp>
#include <catch2/internal/catch_windows_h_proxy.hpp>
#include <catch2/reporters/catch_reporter_listening.hpp>
#include <catch2/reporters/catch_reporter_multi.hpp>
#include <catch2/interfaces/catch_interfaces_reporter_registry.hpp>
#include <catch2/interfaces/catch_interfaces_reporter_factory.hpp>
#include <catch2/internal/catch_move_and_forward.hpp>
@@ -48,7 +48,7 @@ namespace Catch {
return createReporter(config->getReportersAndOutputFiles()[0].reporterName, ReporterConfig(config, stream));
}
auto multi = Detail::make_unique<ListeningReporter>(config);
auto multi = Detail::make_unique<MultiReporter>(config);
auto const& listeners = Catch::getRegistryHub().getReporterRegistry().getListeners();
for (auto const& listener : listeners) {