File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
tooling/noirc_abi_wasm/test/browser Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ it('correctly handles struct inputs', async () => {
1717 const struct_array_arg : MyStruct [ ] = inputs . struct_array_arg as MyStruct [ ] ;
1818 const nested_struct_arg : MyNestedStruct = inputs . nested_struct_arg as MyNestedStruct ;
1919
20- expect ( BigInt ( decoded_inputs . inputs . struct_arg ) ) . to . be . equal ( BigInt ( struct_arg . foo ) ) ;
20+ expect ( BigInt ( decoded_inputs . inputs . struct_arg . foo ) ) . to . be . equal ( BigInt ( struct_arg . foo ) ) ;
2121 expect ( BigInt ( decoded_inputs . inputs . struct_array_arg [ 0 ] . foo ) ) . to . be . equal ( BigInt ( struct_array_arg [ 0 ] . foo ) ) ;
2222 expect ( BigInt ( decoded_inputs . inputs . struct_array_arg [ 1 ] . foo ) ) . to . be . equal ( BigInt ( struct_array_arg [ 1 ] . foo ) ) ;
2323 expect ( BigInt ( decoded_inputs . inputs . struct_array_arg [ 2 ] . foo ) ) . to . be . equal ( BigInt ( struct_array_arg [ 2 ] . foo ) ) ;
You can’t perform that action at this time.
0 commit comments