Skip to content

Commit

Permalink
fix conflicting mod_fold_functions name (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
jalvesz committed Feb 13, 2023
1 parent a2cd6ea commit 2457a66
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions test/test_foldl.f90
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module mod_fold_functions
module mod_foldl_functions

implicit none

Expand Down Expand Up @@ -66,13 +66,13 @@ pure complex(real128) function sum_c16(x, y) result(res)
res = x + y
end function sum_c16

end module mod_fold_functions
end module mod_foldl_functions

program test_foldl
use iso_fortran_env, only:int8, int16, int32, int64, real32, real64, real128
use testing, only:assert, initialize_tests, report_tests
use functional
use mod_fold_functions
use mod_foldl_functions

implicit none

Expand Down
6 changes: 3 additions & 3 deletions test/test_foldr.f90
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module mod_fold_functions
module mod_foldr_functions

implicit none

Expand Down Expand Up @@ -66,13 +66,13 @@ pure complex(real128) function sum_c16(x, y) result(res)
res = x + y
end function sum_c16

end module mod_fold_functions
end module mod_foldr_functions

program test_foldr
use iso_fortran_env, only:int8, int16, int32, int64, real32, real64, real128
use testing, only:assert, initialize_tests, report_tests
use functional
use mod_fold_functions
use mod_foldr_functions

implicit none

Expand Down
6 changes: 3 additions & 3 deletions test/test_foldt.f90
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module mod_fold_functions
module mod_foldt_functions

implicit none

Expand Down Expand Up @@ -66,13 +66,13 @@ pure complex(real128) function sum_c16(x, y) result(res)
res = x + y
end function sum_c16

end module mod_fold_functions
end module mod_foldt_functions

program test_foldt
use iso_fortran_env, only:int8, int16, int32, int64, real32, real64, real128
use testing, only:assert, initialize_tests, report_tests
use functional
use mod_fold_functions
use mod_foldt_functions

implicit none

Expand Down

0 comments on commit 2457a66

Please sign in to comment.