aboutsummaryrefslogtreecommitdiff
path: root/tests/metaprogramming.nom
diff options
context:
space:
mode:
authorBruce Hill <bitbucket@bruce-hill.com>2018-05-15 15:21:32 -0700
committerBruce Hill <bitbucket@bruce-hill.com>2018-05-15 15:22:03 -0700
commit28cd9ae0b7a09d8f2cd0cd929f1ebdce4b081502 (patch)
tree9b306517621da0ecbc824c68382044515581d8ef /tests/metaprogramming.nom
parentae979c3718b6b472148a19f64aa3e0878e1e259d (diff)
More API cleanup, and fixed a bug with optimized lua files generating
spurious circular import errors.
Diffstat (limited to 'tests/metaprogramming.nom')
-rw-r--r--tests/metaprogramming.nom2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/metaprogramming.nom b/tests/metaprogramming.nom
index 395f4c6..e94a78f 100644
--- a/tests/metaprogramming.nom
+++ b/tests/metaprogramming.nom
@@ -50,7 +50,7 @@ assume ((type of {}) = "table") or barf "type of failed."
assume ((nomsu) = (=lua "nomsu")) or barf "nomsu failed"
-assume (("x" as lua identifier) = (\%x as lua identifier)) or barf "converting to identifier failed."
+assume (((\%x as lua identifier) as text) = "_x") or barf "converting to identifier failed."
assume ((run "return 99") = 99) or barf "run % failed."