Skip to content

Commit 6d7fd23

Browse files
committed
Fix FileExtendedStatus
1 parent 15eaa0f commit 6d7fd23

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/FileExtendedStatus.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@ ignoreIOExceptions io = io `E.catch`
9090
((\_ -> return ()) :: IOException -> IO ())
9191

9292
getStatus f = do
93-
fs <- getExtendedFileStatus Nothing f defaultStatxFlags defaultStatxMask
94-
ls <- getExtendedFileStatus Nothing f SymlinkNoFollow defaultStatxMask
93+
fs <- getExtendedFileStatus Nothing f defaultStatxFlags StatxAll
94+
ls <- getExtendedFileStatus Nothing f SymlinkNoFollow StatxAll
9595
fs' <- getFileStatus f
9696

9797
statusExtendedElementsMinimal fs @?= statusElementsMinimal fs'

0 commit comments

Comments
 (0)