Skip to content

Commit

Permalink
Merge pull request #12 from peterhuene/fix-ci
Browse files Browse the repository at this point in the history
Fix CI.
  • Loading branch information
peterhuene authored Apr 30, 2020
2 parents 0c9c771 + afbbd55 commit 859ecdf
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/Modules/TableExports.wat
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(module
(table $t0 1 10 funcref)
(table $t1 10 anyref)
(table $t1 10 funcref)
(table $t2 100 1000 funcref)
(export "table1" (table $t0))
(export "table2" (table $t1))
Expand Down
2 changes: 1 addition & 1 deletion tests/Modules/TableImports.wat
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(module
(import "" "table1" (table $t1 10 funcref))
(import "" "table2" (table $t2 15 anyref))
(import "" "table2" (table $t2 15 funcref))
(import "other" "table3" (table $t3 1 funcref))
)
2 changes: 1 addition & 1 deletion tests/TableExportsTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public static IEnumerable<object[]> GetTableExports()

yield return new object[] {
"table2",
ValueKind.AnyRef,
ValueKind.FuncRef,
10,
uint.MaxValue
};
Expand Down
2 changes: 1 addition & 1 deletion tests/TableImportsTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public static IEnumerable<object[]> GetTableImports()
yield return new object[] {
"",
"table2",
ValueKind.AnyRef,
ValueKind.FuncRef,
15,
uint.MaxValue
};
Expand Down

0 comments on commit 859ecdf

Please sign in to comment.