summaryrefslogtreecommitdiff
path: root/test/lit/validation/closed-world-interface.wast
diff options
context:
space:
mode:
Diffstat (limited to 'test/lit/validation/closed-world-interface.wast')
-rw-r--r--test/lit/validation/closed-world-interface.wast4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/lit/validation/closed-world-interface.wast b/test/lit/validation/closed-world-interface.wast
index f5dd7ad46..06cf1cef7 100644
--- a/test/lit/validation/closed-world-interface.wast
+++ b/test/lit/validation/closed-world-interface.wast
@@ -9,7 +9,7 @@
;; This is pulled in by a global.
;; CHECK: publicly exposed type disallowed with a closed world: $array, on
-;; CHECK-NEXT: (array (mut i8))
+;; CHECK-NEXT: (array (mut i32))
;; This is pulled in only by a global, so it is disallowed even though it is a function type.
;; CHECK: publicly exposed type disallowed with a closed world: $private, on
@@ -21,7 +21,7 @@
(module
(type $struct (struct))
- (type $array (array (mut i8)))
+ (type $array (array (mut i32)))
(type $void (func))
(type $abstract (func (param anyref)))