Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
zmoon authored Jan 28, 2025
1 parent 0f78027 commit 817b760
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/external/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# GOCART2G Process Library
# GOCART-2G Process Library
#

set(
Expand Down
2 changes: 1 addition & 1 deletion tests/test_chem.f90
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ program test_chem
character(len=:), allocatable :: micm_version
character(len=*), parameter :: expected_micm_version = "3.7.0"

micm_version = adjustl(trim(cc_get_micm_version()))
micm_version = trim(adjustl(cc_get_micm_version()))
print "('MICM version:', 1x, '''', a, '''')", micm_version
call assert(micm_version == expected_micm_version, &
"MICM version should be "//expected_micm_version)
Expand Down

0 comments on commit 817b760

Please sign in to comment.