diff options
| author | Andrey Orst <andreyorst@gmail.com> | 2020-11-19 16:42:28 +0000 |
|---|---|---|
| committer | Andrey Orst <andreyorst@gmail.com> | 2020-11-19 16:42:28 +0000 |
| commit | ba778a1223f601333be2411fac7a7efa53c283c4 (patch) | |
| tree | 23d0c792e5785f6b8c7e5af79ec2e1d62148358b /tests/test.fnl | |
| parent | d78fc3f0bca806f0f845057f2af0047612f1a8e4 (diff) | |
feature: Sets
Diffstat (limited to 'tests/test.fnl')
| -rw-r--r-- | tests/test.fnl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test.fnl b/tests/test.fnl index 5dc40c1..b250af4 100644 --- a/tests/test.fnl +++ b/tests/test.fnl @@ -55,7 +55,7 @@ the tables uses tables as keys." Left: " (tostr# left#) " Right: " (tostr# right#) "\n"))))) -(fn test.assert* +(fn test.assert-is [expr msg] `(assert ,expr (.. "assertion failed for " (or ,msg ,(tostring expr))))) |