cmark

My personal build of CMark ✏️

Commit
4e6e6b185c73075309a676fa8cc8535e9b28cde1
Parent
496cfe0330300f9c6c214d376f12fb9f3eb9632a
Author
John MacFarlane <jgm@berkeley.edu>
Date

`spec_test.py`: changed default to `spec.txt` (not `test/spec.txt`).

This doesn't matter, since we specify the argument anyway. But it brings this into sync with the version in CommonMark.

Diffstat

1 file changed, 1 insertion, 1 deletion

Status File Name N° Changes Insertions Deletions
Modified test/spec_tests.py 2 1 1
diff --git a/test/spec_tests.py b/test/spec_tests.py
@@ -13,7 +13,7 @@ if __name__ == "__main__":
     parser = argparse.ArgumentParser(description='Run cmark tests.')
     parser.add_argument('-p', '--program', dest='program', nargs='?', default=None,
             help='program to test')
-    parser.add_argument('-s', '--spec', dest='spec', nargs='?', default='test/spec.txt',
+    parser.add_argument('-s', '--spec', dest='spec', nargs='?', default='spec.txt',
             help='path to spec')
     parser.add_argument('-P', '--pattern', dest='pattern', nargs='?',
             default=None, help='limit to sections matching regex pattern')