summaryrefslogtreecommitdiff
path: root/tests/typ/code/importable
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2021-07-08 21:16:16 +0200
committerLaurenz <laurmaedje@gmail.com>2021-07-08 21:16:16 +0200
commit551e3af9d09a03aaa246cac46b98124bc10835ba (patch)
treeb075a93df7cb608eae9650e497fb6a1336d80212 /tests/typ/code/importable
parent5c327e249e03ac303e7fef40e2df6c6ef834db66 (diff)
Replace using with from
Diffstat (limited to 'tests/typ/code/importable')
-rw-r--r--tests/typ/code/importable/cycle1.typ4
-rw-r--r--tests/typ/code/importable/cycle2.typ4
2 files changed, 4 insertions, 4 deletions
diff --git a/tests/typ/code/importable/cycle1.typ b/tests/typ/code/importable/cycle1.typ
index e251686d..ae755fa0 100644
--- a/tests/typ/code/importable/cycle1.typ
+++ b/tests/typ/code/importable/cycle1.typ
@@ -1,7 +1,7 @@
// Ref: false
-// Error: 9-21 cyclic import
-#import "cycle2.typ" using *
+// Error: 16-28 cyclic import
+#import * from "cycle2.typ"
#let inaccessible = "wow"
This is the first element of an import cycle.
diff --git a/tests/typ/code/importable/cycle2.typ b/tests/typ/code/importable/cycle2.typ
index 8071ec6b..d4f94564 100644
--- a/tests/typ/code/importable/cycle2.typ
+++ b/tests/typ/code/importable/cycle2.typ
@@ -1,7 +1,7 @@
// Ref: false
-// Error: 9-21 cyclic import
-#import "cycle1.typ" using *
+// Error: 16-28 cyclic import
+#import * from "cycle1.typ"
#let val = "much cycle"
This is the second element of an import cycle.