diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1132290b..02726edb 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -38,7 +38,7 @@ jobs: run: | git lfs pull cd tests - conda run -n svfsiplus pytest -v --durations=0 + conda run -n svfsiplus pytest -rPv --durations=0 - name: Generate code coverage if: startsWith(matrix.os, 'ubuntu-22.04') run: | diff --git a/Code/Source/svFSI/mat_models_carray.h b/Code/Source/svFSI/mat_models_carray.h index e11c28c3..1d5eb454 100644 --- a/Code/Source/svFSI/mat_models_carray.h +++ b/Code/Source/svFSI/mat_models_carray.h @@ -943,7 +943,7 @@ void get_pk2cc(const ComMod& com_mod, const CepMod& cep_mod, const dmnType& lDmn for (int j = 0; j < N; j++) { for (int k = 0; k < N; k++) { for (int l = 0; l < N; l++) { - CCb[i][j][k][l] += g1 * Hss_prod[i][j][k][l]; + CCb[i][j][k][l] += g2 * Hss_prod[i][j][k][l]; } } }