Skip to content

Commit

Permalink
Fix typo in assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinstratford committed Nov 25, 2024
1 parent 6e38078 commit 7c1f20e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mpi_s/mpi_tests.c
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ static int test_mpi_allreduce(void) {
int irecv = 1;
int iret = MPI_Allreduce(MPI_IN_PLACE, &irecv, 1, MPI_INT, MPI_SUM, comm);
if (iret != MPI_SUCCESS) ifail = 1;
assert(ifaill == 0);
assert(ifail == 0);
if (irecv != 1) ifail = 1;
assert(ifail == 0);
}
Expand Down

0 comments on commit 7c1f20e

Please sign in to comment.