Skip to content

Commit

Permalink
Addressing review comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
mwaxmonsky committed Oct 18, 2024
1 parent 166c419 commit bfbad10
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/test_hash_table.pf
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ subroutine test_hash_table_add_hashable_char_value_same_after_get()
end subroutine test_hash_table_add_hashable_char_value_same_after_get

@test
subroutine test_hash_table_key_has_is_expected()
subroutine test_hash_table_key_is_expected()
use funit
use hist_hash_table, only: hist_hash_table_t

type(hist_hash_table_t) :: htable

call htable%initialize(4)

! Assert the key hash is consistent with expected implementation
! Assert the key hash method returns the integer version of the provided string
@assertEqual(1, htable%key_hash("1"))

end subroutine test_hash_table_key_has_is_expected
end subroutine test_hash_table_key_is_expected

0 comments on commit bfbad10

Please sign in to comment.