From f118a6c5657019f9899dff6268126c6074af496f Mon Sep 17 00:00:00 2001 From: hneemann Date: Fri, 23 Feb 2018 17:55:47 +0100 Subject: [PATCH] removed overline decoration from SVG export because it looks awful. --- .../de/neemann/digital/draw/graphics/GraphicSVGIndexTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/de/neemann/digital/draw/graphics/GraphicSVGIndexTest.java b/src/test/java/de/neemann/digital/draw/graphics/GraphicSVGIndexTest.java index 7d3faf671..716a6f82f 100644 --- a/src/test/java/de/neemann/digital/draw/graphics/GraphicSVGIndexTest.java +++ b/src/test/java/de/neemann/digital/draw/graphics/GraphicSVGIndexTest.java @@ -12,7 +12,7 @@ public class GraphicSVGIndexTest extends TestCase { assertEquals("Z0", gs.formatText("Z_0", Style.NORMAL)); assertEquals("<a>", gs.formatText("", Style.NORMAL)); - assertEquals("Z", gs.formatText("~Z", Style.NORMAL)); + assertEquals("\u00ACZ", gs.formatText("~Z", Style.NORMAL)); } } \ No newline at end of file