Skip to content

Commit f15d42d

Browse files
committed
Updated module names
For the hash functions test codes updated the module names from `stdlib_32_bit_hash_codes` and `stdlib_64_bit_hash_codes` to `sstdlib_hash_32bit` and `stdlib_hash_64bit`, respectively. [ticket: X]
1 parent dd088ca commit f15d42d

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

src/tests/hash_functions/test_hash_functions.f90

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
module test_hash_functions
2-
use testdrive, only : new_unittest, unittest_type, error_type, check, skip_test
2+
use testdrive, only : new_unittest, unittest_type, error_type, check, &
3+
skip_test
34
use stdlib_kinds, only: int8, int32, int64, dp
4-
use stdlib_32_bit_hash_codes, only: little_endian &
5+
use stdlib_hash_32bit, only: little_endian &
56
, nmhash32 &
67
, nmhash32x &
78
, water_hash
8-
use stdlib_64_bit_hash_codes, only: pengy_hash, spooky_hash
9+
use stdlib_hash_64bit, only: pengy_hash, spooky_hash
910

1011
implicit none
1112
private

src/tests/hash_functions_perf/test_32_bit_hash_performance.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ program test_32_bit_hash_performance
88
int32, &
99
int64
1010

11-
use stdlib_32_bit_hash_codes
11+
use stdlib_hash_32bit
1212

1313
implicit none
1414

src/tests/hash_functions_perf/test_64_bit_hash_performance.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ program test_64_bit_hash_performance
88
int32, &
99
int64
1010

11-
use stdlib_64_bit_hash_codes
11+
use stdlib_hash_64bit
1212

1313
implicit none
1414

0 commit comments

Comments
 (0)