Skip to content

Commit

Permalink
Fix unrelated test
Browse files Browse the repository at this point in the history
  • Loading branch information
darianboggs committed Feb 27, 2025
1 parent a31038e commit e91352a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hconfig_utils/tests/Test_hconfig_get_private.pf
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ contains
params = HConfigParams(hconfig, LABEL)
call get_value(params, actual, rc=status_)
found = params%value_set
@assertFalse(status_ == 0, 'get_value should have failed.')
@assertFalse(found, 'get_value should have failed.')

end subroutine test_get_i4_not_found_no_default

Expand Down Expand Up @@ -540,7 +540,7 @@ contains
hconfig = ESMF_HConfigCreate(rc=status)
hconfig_is_created = (status == 0)
call ESMF_HConfigAdd(hconfig, 0, addKeyString='null', rc=status)
@assertEqual(0, status, 'Failed to add null vallue')
@assertEqual(0, status, 'Failed to add null value')
end if
@assertTrue(hconfig_is_created, 'HConfig was not created.')

Expand Down

0 comments on commit e91352a

Please sign in to comment.