From 7b7bd304aafcf9287eafc73bb332e4081f8fdf58 Mon Sep 17 00:00:00 2001
From: Lesnek <milan.lesnek@kiwi.com>
Date: Sun, 2 Jul 2023 15:16:14 +0200
Subject: [PATCH] fix(warnings-recorder): Add handling of rest

---
 src/_pytest/recwarn.py | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/src/_pytest/recwarn.py b/src/_pytest/recwarn.py
index ba5a3311c..a60f34671 100644
--- a/src/_pytest/recwarn.py
+++ b/src/_pytest/recwarn.py
@@ -217,6 +217,11 @@ class WarningsRecorder(warnings.catch_warnings):  # type:ignore[type-arg]
             __tracebackhide__ = True
             raise AssertionError(f"{cls!r} not found in warning list")
         (idx, best), *rest = matches
+        for i, w in rest:
+            if issubclass(w.category, best.category) and not issubclass(
+                best.category, w.category
+            ):
+                idx, best = i, w
         return self._list.pop(idx)
 
     def clear(self) -> None: