packages/python/seqdiag/seqdiag-2.0.0-remove_broken_test.patch
Alexander Baldeck 257c394be0 * updates & rebuilds for:
* Python 3.10
  * Protobuf 3.19
  * ICU 70.1
  * boost 1.78.0
  * FFMPEG 5.0
2022-01-31 17:18:05 +01:00

21 lines
963 B
Diff

diff --git i/src/seqdiag/tests/test_rst_directives.py w/src/seqdiag/tests/test_rst_directives.py
index c3affce..4c184b8 100644
--- i/src/seqdiag/tests/test_rst_directives.py
+++ w/src/seqdiag/tests/test_rst_directives.py
@@ -177,15 +177,6 @@ class TestRstDirectives(unittest.TestCase):
self.assertEqual(1, len(doctree))
self.assertEqual(nodes.image, type(doctree[0]))
- def test_setup_inline_svg_is_true_with_multibytes(self):
- directives.setup(format='SVG', outputdir=self.tmpdir, inline_svg=True)
- text = (".. seqdiag::\n"
- "\n"
- " あ -> い")
- doctree = publish_doctree(text)
- self.assertEqual(1, len(doctree))
- self.assertEqual(nodes.raw, type(doctree[0]))
-
def test_setup_inline_svg_is_true_and_width_option1(self):
directives.setup(format='SVG', outputdir=self.tmpdir,
nodoctype=True, noviewbox=True, inline_svg=True)