| Index: components/mus/ws/test_change_tracker.cc
|
| diff --git a/components/mus/ws/test_change_tracker.cc b/components/mus/ws/test_change_tracker.cc
|
| index 2ea6796428be2ce02612d45bec0b82b15a08fb57..6a7100c8e92d114254f5be37146009aac05a7200 100644
|
| --- a/components/mus/ws/test_change_tracker.cc
|
| +++ b/components/mus/ws/test_change_tracker.cc
|
| @@ -149,9 +149,12 @@ std::string SingleChangeToDescription(const std::vector<Change>& changes) {
|
| }
|
|
|
| std::string SingleWindowDescription(const std::vector<TestWindow>& windows) {
|
| - if (windows.size() != 1u)
|
| - return "more than one changes and expected only one";
|
| - return windows[0].ToString();
|
| + if (windows.empty())
|
| + return "no windows";
|
| + std::string result;
|
| + for (const TestWindow& window : windows)
|
| + result += window.ToString();
|
| + return result;
|
| }
|
|
|
| std::string ChangeWindowDescription(const std::vector<Change>& changes) {
|
|
|