I submitted a PR here Matrix exercise: Tests 1 and 5 (one number matrix) uncommented, changed. by jklebes · Pull Request #271 · exercism/fortran · GitHub and I’ve been automated told to bring it to the forums for discussion:
I found fortran matrix exercise tests 1 and 5 commented out.
This causes confusion when numbering in ctest output does not match numbering in file comments.
I uncommented the tests and corrected them,
call assert_equal_int_arr((/1/), row( (/"1"/), (/1, 1/), 1), "extract row from one number matrix")
as I understand it the matrix is [[1]] with dimensions 1 x 1 and we are getting row 1 or column 1, which should equal [1] .
“Tested” by running the test with my so-far-passing fortran solution to the exercise. Now 8 passing tests are indicated in line with other languages.
The change seems minor, on the other hand if it’s wrong a lot of previously submitted solutions to the exercise could be failed.