From 2054bcbff6afd6c844c4c491ac868b4901b079dd Mon Sep 17 00:00:00 2001
From: John MacFarlane <jgm@berkeley.edu>
Date: Thu, 8 Oct 2020 12:32:42 -0700
Subject: [PATCH] Fix custom writer test.

The custom writer is now less aggressive about escaping `"`.
---
 test/writer.custom | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/writer.custom b/test/writer.custom
index db44b7b0c..2cb398eb1 100644
--- a/test/writer.custom
+++ b/test/writer.custom
@@ -57,7 +57,7 @@ It is pretty short.</p>
 <p>Code in a block quote:</p>
 
 <pre><code>sub status {
-    print &quot;working&quot;;
+    print "working";
 }</code></pre>
 
 <p>A list:</p>
@@ -92,7 +92,7 @@ It is pretty short.</p>
 <pre><code>---- (should be four hyphens)
 
 sub status {
-    print &quot;working&quot;;
+    print "working";
 }
 
 this code block is indented by one tab</code></pre>