aboutsummaryrefslogtreecommitdiff
path: root/test/Tests/Readers/RST.hs
diff options
context:
space:
mode:
Diffstat (limited to 'test/Tests/Readers/RST.hs')
-rw-r--r--test/Tests/Readers/RST.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Tests/Readers/RST.hs b/test/Tests/Readers/RST.hs
index d69440843..9e2253cc4 100644
--- a/test/Tests/Readers/RST.hs
+++ b/test/Tests/Readers/RST.hs
@@ -112,7 +112,7 @@ tests = [ "line block with blank line" =:
"def func(x):\n return y")
, "Code directive with number-lines, no line specified" =: T.unlines
[ ".. code::python"
- , " :number-lines: "
+ , " :number-lines:"
, ""
, " def func(x):"
, " return y"
@@ -120,7 +120,7 @@ tests = [ "line block with blank line" =:
doc (codeBlockWith
( ""
, ["python", "numberLines"]
- , [ ("startFrom", "") ]
+ , []
)
"def func(x):\n return y")
, testGroup "literal / line / code blocks"