Commit d6eb188d authored by Chris Lamb's avatar Chris Lamb 👀
Browse files

Ensure both WASM test data files are actually unique. (Closes: #42)

parent 2658f6e2
Loading
Loading
Loading
Loading
Loading
(47 B)

File changed.

No diff preview for this file type.

+3 −6
Original line number Diff line number Diff line
@@ -1,6 +1,8 @@
@@ -1,6 +1,6 @@
 (module
   (type (;0;) (func))
-  (import "" "hello" (func (;0;) (type 0)))
+  (import "" "world" (func (;0;) (type 0)))
+  (import "" "iello" (func (;0;) (type 0)))
   (func (;1;) (type 0)
+    nop)
+  (func (;2;) (type 0)
     call 0)
-  (export "run" (func 1)))
+  (export "run" (func 2)))
   (export "run" (func 1)))