summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Peveler <matt.peveler@gmail.com>2021-02-02 03:51:59 +0000
committerMatthew Peveler <matt.peveler@gmail.com>2021-02-02 03:51:59 +0000
commit2261dab2caf471ab5753c79938be35d6f3f9f774 (patch)
treec79a2d040692b45f4f03e01afb017fb8895894d4
parent066908d38c9eab2053cac92c00a5237c645155e3 (diff)
downloadasciidoc-py3-include_lines.tar.gz
-rw-r--r--tests/data/include-lines-test.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/data/include-lines-test.txt b/tests/data/include-lines-test.txt
index 391a893..6f0fd2c 100644
--- a/tests/data/include-lines-test.txt
+++ b/tests/data/include-lines-test.txt
@@ -5,19 +5,19 @@ The imports:
[source,python]
----
-include::./data/dummy_file.py[lines="6..15"]
+include::./dummy_file.py[lines="6..15"]
----
Some random ranges:
[source,python]
----
-include::./data/dummy_file.py[lines="29..44,61..68,70,398..-1"]
+include::./dummy_file.py[lines="29..44,61..68,70,398..-1"]
----
Using ; as separator:
[source,python]
----
-include::./data/dummy_file.py[lines="29..44;61..68"]
+include::./dummy_file.py[lines="29..44;61..68"]
----