Skip to content

Commit

Permalink
fix test after f4f76c1
Browse files Browse the repository at this point in the history
  • Loading branch information
Nelson-numerical-software committed Nov 2, 2023
1 parent f4f76c1 commit 287420b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/mpi/tests/test_MPI_Send_Recv_anonymous_function.m
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
for source = 1:num_ranks - 1
receive = MPI_Recv (source, TAG);
assert_istrue(isa(receive, 'function_handle'));
assert_isequal(func2str(receive), '@(x)a+b+x');
assert_isequal(func2str(receive), '@(x)(a+b)+x');
assert_isequal(receive(1), 111);
end
end
Expand Down

0 comments on commit 287420b

Please sign in to comment.