aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/ffi/export.jvm.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/test/lux/ffi/export.jvm.lux6
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/source/test/lux/ffi/export.jvm.lux b/stdlib/source/test/lux/ffi/export.jvm.lux
index 805e01c28..3ad692d50 100644
--- a/stdlib/source/test/lux/ffi/export.jvm.lux
+++ b/stdlib/source/test/lux/ffi/export.jvm.lux
@@ -34,7 +34,7 @@
(def: expected_double (//.as_double (static.random_frac)))
(def: expected_string (//.as_string (static.random code.text (random.lower_case 2))))
-(`` (`` (/.export: Primitives
+(`` (`` (/.export Primitives
... Constants
(actual_boolean boolean ..expected_boolean)
(actual_byte byte ..expected_byte)
@@ -91,7 +91,7 @@
))
)))
-(/.export: Objects
+(/.export Objects
(actual_string java/lang/String ..expected_string)
((string_method [left java/lang/String right java/lang/String])
@@ -141,7 +141,7 @@
[string //.as_string (random.lower_case 1)]
))]
(all _.and
- (_.coverage [/.export:]
+ (_.coverage [/.export]
(and (bit#= (//.of_boolean ..expected_boolean) (//.of_boolean (Primitives::actual_boolean)))
(int#= (//.of_byte ..expected_byte) (//.of_byte (Primitives::actual_byte)))
(int#= (//.of_short ..expected_short) (//.of_short (Primitives::actual_short)))