summaryrefslogtreecommitdiff
path: root/tests/typ/insert/image.typ
diff options
context:
space:
mode:
Diffstat (limited to 'tests/typ/insert/image.typ')
-rw-r--r--tests/typ/insert/image.typ14
1 files changed, 8 insertions, 6 deletions
diff --git a/tests/typ/insert/image.typ b/tests/typ/insert/image.typ
index 35087c2e..84069949 100644
--- a/tests/typ/insert/image.typ
+++ b/tests/typ/insert/image.typ
@@ -10,12 +10,6 @@
// Load an RGB JPEG image.
#image("../../res/tiger.jpg")
-// Error: 8-29 file not found
-#image("path/does/not/exist")
-
-// Error: 8-21 failed to load image
-#image("./image.typ")
-
---
// Test configuring the size and fitting behaviour of images.
@@ -36,3 +30,11 @@
// Make sure the bounding-box of the image is correct.
#align(bottom, right, image("../../res/tiger.jpg", width: 60pt))
+
+---
+// Error: 8-29 file not found
+#image("path/does/not/exist")
+
+---
+// Error: 8-21 failed to load image
+#image("./image.typ")