Skip to content

Commit

Permalink
Fixed a bug in the customs unit test.
Browse files Browse the repository at this point in the history
  • Loading branch information
berndporr committed Dec 18, 2024
1 parent ead398f commit c6516bd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/custom.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ int main (int,char**)
assert_print(coeffRet.stageArray[i].m_a0 == coeff[i][3],"m_a0 mismatch.\n");
assert_print(coeffRet.stageArray[i].m_a1 == coeff[i][4],"m_a1 mismatch.\n");
assert_print(coeffRet.stageArray[i].m_a2 == coeff[i][5],"m_a2 mismatch.\n");
assert_print(coeffRet.stageArray[i].m_b0 == coeff[i][3],"m_b0 mismatch.\n");
assert_print(coeffRet.stageArray[i].m_b1 == coeff[i][4],"m_b1 mismatch.\n");
assert_print(coeffRet.stageArray[i].m_b2 == coeff[i][5],"m_b2 mismatch.\n");
assert_print(coeffRet.stageArray[i].m_b0 == coeff[i][0],"m_b0 mismatch.\n");
assert_print(coeffRet.stageArray[i].m_b1 == coeff[i][1],"m_b1 mismatch.\n");
assert_print(coeffRet.stageArray[i].m_b2 == coeff[i][2],"m_b2 mismatch.\n");
}

double b = 0;
Expand Down

0 comments on commit c6516bd

Please sign in to comment.