commit | fa3b7c46c1676a07b0b802a34b3a93a6790fe3ff | [log] [tgz] |
---|---|---|
author | Jon Hall <jhall@onlab.us> | Wed Jan 21 16:04:46 2015 -0800 |
committer | Jon Hall <jhall@onlab.us> | Wed Jan 21 16:04:46 2015 -0800 |
tree | f0d7e738a0bb7fc7d82cbc547b28904e5784f6ed | |
parent | 21b7bc941f635449b37a1e54e8c9a81dfb70cfd5 [diff] | |
parent | 9910c2b77b81ffbb74bb51af48614f2e194f7cc3 [diff] |
Merge pull request #58 from opennetworkinglab/devl/multiline_step Bug fix to allow multi line descriptions for the first step in a case
diff --git a/TestON/core/testparser.py b/TestON/core/testparser.py index f158259..37f50f0 100644 --- a/TestON/core/testparser.py +++ b/TestON/core/testparser.py
@@ -96,7 +96,7 @@ if step == 0 : i = 0 block = '' - while i <= index : + while i < index : block += caseStatements[i] i = i + 1 stepCode[step] = block