From: Bastian Germann <bage@debian.org>
Date: Tue, 13 Dec 2022 18:16:58 +0100
Subject: Fix expected resource warning

The warning has changed with newer pandoc versions.
---
 tests.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/tests.py b/tests.py
index 916a24d..00e7093 100644
--- a/tests.py
+++ b/tests.py
@@ -333,11 +333,11 @@ class TestPypandoc(unittest.TestCase):
                 output = output.replace("'missing.png'",
                                         "missing.png")
                 expected = (u'[WARNING] Could not fetch resource '
-                            u'missing.png: PandocResourceNotFound '
-                            u'"missing.png"\n'
+                            u'missing.png: replacing image with '
+                            u'description\n'
                             u'[WARNING] Could not fetch resource '
-                            u'missing.png: PandocResourceNotFound '
-                            u'"missing.png"\n\n')
+                            u'missing.png: replacing image with '
+                            u'description\n\n')
                 self.assertEqual(expected, output)
 
 
