Skip to content

Commit

Permalink
Fix java test
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcrichton committed Jan 7, 2025
1 parent 5a60939 commit 8cdba26
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/runtime/lists/wit_exports_test_lists_TestImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import java.util.ArrayList;

import wit.worlds.Lists.Tuple2;
import wit.worlds.Lists.Tuple3;

public class TestImpl {
public static void emptyListParam(byte[] a) {
Expand Down Expand Up @@ -52,7 +53,7 @@ public static void listParam4(ArrayList<ArrayList<String>> a) {
expect(a.get(1).get(0).equals("baz"));
}

public static void listParam5(ArrayList<Tuple3<byte, int, byte>> a) {
public static void listParam5(ArrayList<Tuple3<Byte, Integer, Byte>> a) {
expect(a.size() == 2);
expect(a.get(0).f0 == 1);
expect(a.get(0).f1 == 2);
Expand Down

0 comments on commit 8cdba26

Please sign in to comment.