summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-07-03 20:41:16 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2015-07-03 20:41:16 -0700
commit4e6e6b185c73075309a676fa8cc8535e9b28cde1 (patch)
tree765695d78ef9bae276eccd253d93ece613cc87f7 /test
parent496cfe0330300f9c6c214d376f12fb9f3eb9632a (diff)
`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 (limited to 'test')
-rwxr-xr-xtest/spec_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/spec_tests.py b/test/spec_tests.py
index 2ca4b60..be11f12 100755
--- 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')