@@ -2,7 +2,7 @@ module test_filesystem
22 use testdrive, only : new_unittest, unittest_type, error_type, check, skip_test
33 use stdlib_system, only: is_directory, delete_file, FS_ERROR, FS_ERROR_CODE, &
44 make_directory, remove_directory, make_directory_all, is_windows, OS_TYPE, &
5- OS_WINDOWS, exists, type_unknown, type_regular_file, type_directory, type_symlink
5+ OS_WINDOWS, exists, fs_type_unknown, fs_type_regular_file, fs_type_directory, fs_type_symlink
66 use stdlib_error, only: state_type, STDLIB_FS_ERROR
77 use stdlib_strings, only: to_string
88
@@ -89,7 +89,7 @@ subroutine test_exists_reg_file(error)
8989 return
9090 end if
9191
92- call check(error, t == type_regular_file , " exists incorrectly identifies type of &
92+ call check(error, t == fs_type_regular_file , " exists incorrectly identifies type of &
9393 reg files!: type=" // to_string(t))
9494
9595 if (allocated (error)) then
@@ -130,7 +130,7 @@ subroutine test_exists_dir(error)
130130 return
131131 end if
132132
133- call check(error, t == type_directory , " exists incorrectly identifies type of &
133+ call check(error, t == fs_type_directory , " exists incorrectly identifies type of &
134134 directories!: type=" // to_string(t))
135135
136136 if (allocated (error)) then
@@ -193,7 +193,7 @@ subroutine test_exists_symlink(error)
193193 return
194194 end if
195195
196- call check(error, t == type_symlink , " exists incorrectly identifies type of &
196+ call check(error, t == fs_type_symlink , " exists incorrectly identifies type of &
197197 symlinks!: type=" // to_string(t))
198198
199199 if (allocated (error)) then
0 commit comments