summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2020-02-09 18:27:34 +0200
committerLars Wirzenius <liw@liw.fi>2020-02-09 18:27:34 +0200
commit0639d66b4d25eb71202caf64820bf00b47b06681 (patch)
treecbe97fd1147a70e7b51b8f917e240ae158a9b31e
parent76ed41a71adb53e12bb5be19bfd66870ce5b4d5e (diff)
downloadsubplot-0639d66b4d25eb71202caf64820bf00b47b06681.tar.gz
Fix: use the right tag for scenario blocks
We were using the "subplot" tag, when the correct tag is "scenario". Tests pass despite the change.
-rw-r--r--subplot.md14
1 files changed, 7 insertions, 7 deletions
diff --git a/subplot.md b/subplot.md
index f7d38ac..ff05be7 100644
--- a/subplot.md
+++ b/subplot.md
@@ -488,7 +488,7 @@ functions: f.py
# Simple
This is the simplest possible test scenario
-```subplot
+```scenario
given precondition foo
when I do bar
then bar was done
@@ -579,7 +579,7 @@ functions: f.py
## heading 1.1
### heading 1.1.1
-```subplot
+```scenario
given precondition foo
```
~~~~
@@ -608,7 +608,7 @@ functions: f.py
# heading 1
## heading 1.1a
-```subplot
+```scenario
given precondition foo
```
@@ -643,12 +643,12 @@ functions: f.py
## heading 1.1
### heading 1.1.1
-```subplot
+```scenario
given precondition foo
```
### heading 1.1.2
-```subplot
+```scenario
given precondition foo
```
~~~~
@@ -680,12 +680,12 @@ functions: f.py
## heading 1.1
### heading 1.1.1
-```subplot
+```scenario
given precondition foo
```
## heading 1.2
-```subplot
+```scenario
given precondition foo
```
~~~~