update fence test to use backticks at start of line

This commit is contained in:
Paul Gauthier 2024-09-21 10:42:58 -07:00
parent f29825ff22
commit cfe1d540f1

View file

@ -353,7 +353,7 @@ class TestCoder(unittest.TestCase):
_, file1 = tempfile.mkstemp()
with open(file1, "wb") as f:
f.write(b"this contains ``` backticks")
f.write(b"this contains\n```\nbackticks")
files = [file1]