From a3537ed6e5ba6e9848749036a9790ee501b7984a Mon Sep 17 00:00:00 2001 From: marmare314 <49279081+Marmare314@users.noreply.github.com> Date: Thu, 28 Sep 2023 19:56:15 +0200 Subject: [PATCH] fix tests --- tests/types.typ | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tests/types.typ b/tests/types.typ index a7afb0a..b4e55df 100644 --- a/tests/types.typ +++ b/tests/types.typ @@ -21,8 +21,3 @@ #assert(not check-type(0, float)) #assert-type(0, "", int, float) #assert-type(none, "", None, int, str) - -#let to-args(..args) = args -#check-arg-sink(to-args(0, 1, 2, allow-named: false)) -#check-arg-sink(to-args(a: 0, b: 2, c: 3, allow-positional: false)) -#check-arg-sink(to-args(0, expect-argument: true))