Skip to content

Commit

Permalink
Take extra commas out of test file. NAG doesn't seem to like them.
Browse files Browse the repository at this point in the history
  • Loading branch information
oehmke committed Oct 3, 2024
1 parent e84ae5b commit 3bec650
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/Infrastructure/IO/tests/ESMF_IO_FileTypeCheckUTest.F90
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ program ESMF_IO_FileTypeCheckUTest
write(failMsg, *) "Returned wrong file type"
call ESMF_Test(fileType == ESMF_FILEFORMAT_SCRIP, name, failMsg, result, ESMF_SRCLINE)
#else
write(failMsg, *), "Comparison did not fail as expected"
write(failMsg, *) "Comparison did not fail as expected"
call ESMF_Test(fileType /= ESMF_FILEFORMAT_SCRIP, name, failMsg, result, ESMF_SRCLINE)
#endif
!------------------------------------------------------------------------
Expand All @@ -91,7 +91,7 @@ program ESMF_IO_FileTypeCheckUTest
write(failMsg, *) "Returned wrong file type"
call ESMF_Test(fileType == ESMF_FILEFORMAT_UGRID, name, failMsg, result, ESMF_SRCLINE)
#else
write(failMsg, *), "Comparison did not fail as expected"
write(failMsg, *) "Comparison did not fail as expected"
call ESMF_Test(fileType /= ESMF_FILEFORMAT_UGRID, name, failMsg, result, ESMF_SRCLINE)
#endif
!------------------------------------------------------------------------
Expand All @@ -113,7 +113,7 @@ program ESMF_IO_FileTypeCheckUTest
write(failMsg, *) "Returned wrong file type"
call ESMF_Test(fileType == ESMF_FILEFORMAT_ESMFMESH, name, failMsg, result, ESMF_SRCLINE)
#else
write(failMsg, *), "Comparison did not fail as expected"
write(failMsg, *) "Comparison did not fail as expected"
call ESMF_Test(fileType /= ESMF_FILEFORMAT_ESMFMESH, name, failMsg, result, ESMF_SRCLINE)
#endif
!------------------------------------------------------------------------
Expand All @@ -135,7 +135,7 @@ program ESMF_IO_FileTypeCheckUTest
write(failMsg, *) "Returned wrong file type"
call ESMF_Test(fileType == ESMF_FILEFORMAT_GRIDSPEC, name, failMsg, result, ESMF_SRCLINE)
#else
write(failMsg, *), "Comparison did not fail as expected"
write(failMsg, *) "Comparison did not fail as expected"
call ESMF_Test(fileType /= ESMF_FILEFORMAT_GRIDSPEC, name, failMsg, result, ESMF_SRCLINE)
#endif
!------------------------------------------------------------------------
Expand All @@ -157,7 +157,7 @@ program ESMF_IO_FileTypeCheckUTest
write(failMsg, *) "Returned wrong file type"
call ESMF_Test(fileType == ESMF_FILEFORMAT_MOSAIC, name, failMsg, result, ESMF_SRCLINE)
#else
write(failMsg, *), "Comparison did not fail as expected"
write(failMsg, *) "Comparison did not fail as expected"
call ESMF_Test(fileType /= ESMF_FILEFORMAT_MOSAIC, name, failMsg, result, ESMF_SRCLINE)
#endif
!------------------------------------------------------------------------
Expand All @@ -179,7 +179,7 @@ program ESMF_IO_FileTypeCheckUTest
write(failMsg, *) "Returned wrong file type"
call ESMF_Test(fileType == ESMF_FILEFORMAT_TILE, name, failMsg, result, ESMF_SRCLINE)
#else
write(failMsg, *), "Comparison did not fail as expected"
write(failMsg, *) "Comparison did not fail as expected"
call ESMF_Test(fileType /= ESMF_FILEFORMAT_TILE, name, failMsg, result, ESMF_SRCLINE)
#endif
!------------------------------------------------------------------------
Expand All @@ -201,7 +201,7 @@ program ESMF_IO_FileTypeCheckUTest
write(failMsg, *) "Returned wrong file type"
call ESMF_Test(fileType == ESMF_FILEFORMAT_SCRIP, name, failMsg, result, ESMF_SRCLINE)
#else
write(failMsg, *), "Comparison did not fail as expected"
write(failMsg, *) "Comparison did not fail as expected"
call ESMF_Test(fileType /= ESMF_FILEFORMAT_SCRIP, name, failMsg, result, ESMF_SRCLINE)
#endif
!------------------------------------------------------------------------
Expand Down

0 comments on commit 3bec650

Please sign in to comment.