Skip to content

Commit

Permalink
lower precision used in check for astronomy test again
Browse files Browse the repository at this point in the history
  • Loading branch information
rem1776 authored Jan 2, 2025
1 parent 897b265 commit 8a8e29b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test_fms/astronomy/test_astronomy.F90
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ subroutine check_answers( results, answers, whoami )
integer, parameter :: lkind = TEST_AST_KIND_
character(*) :: whoami

if (ABS(results-answers) .gt. 1.0e-7_lkind ) then
if (ABS(results-answers) .gt. 1.0e-5_lkind ) then
write(*,*) 'EXPECTED ', answers, ' but computed ', results
call mpp_error(FATAL, trim(whoami))
end if
Expand Down

0 comments on commit 8a8e29b

Please sign in to comment.