summaryrefslogtreecommitdiff
path: root/tests/typ/expr
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2021-03-03 22:48:54 +0100
committerLaurenz <laurmaedje@gmail.com>2021-03-03 22:48:54 +0100
commit34f839c7177a041c187ae6103455cd875c4f3d22 (patch)
treeab9da3f320f3e9bc71bf575c1477fb9a66da546e /tests/typ/expr
parent193734f45385b179f40dc0145034204dad3cae8f (diff)
Improve tests 🔨
Diffstat (limited to 'tests/typ/expr')
-rw-r--r--tests/typ/expr/call.typ1
-rw-r--r--tests/typ/expr/closure.typ4
2 files changed, 1 insertions, 4 deletions
diff --git a/tests/typ/expr/call.typ b/tests/typ/expr/call.typ
index 358322d1..0e941124 100644
--- a/tests/typ/expr/call.typ
+++ b/tests/typ/expr/call.typ
@@ -54,7 +54,6 @@
---
// Different forms of template arguments.
-// Ref: true
#let a = "a"
diff --git a/tests/typ/expr/closure.typ b/tests/typ/expr/closure.typ
index d05acaa4..86a6f632 100644
--- a/tests/typ/expr/closure.typ
+++ b/tests/typ/expr/closure.typ
@@ -1,7 +1,7 @@
// Test closures.
+// Ref: false
---
-// Ref: false
// Basic closure without captures.
{
@@ -45,8 +45,6 @@
}
---
-// Ref: false
-
// Too few arguments.
{
let types(x, y) = "[" + type(x) + ", " + type(y) + "]"