From 2767ef608a1cfe9bb68923c7180cb51fdf4dd4a5 Mon Sep 17 00:00:00 2001 From: Dominic Orchard Date: Thu, 15 Aug 2024 21:37:45 +0100 Subject: [PATCH] make test platform agnostic (missed a case) --- test/Language/Fortran/Analysis/ModGraphSpec.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Language/Fortran/Analysis/ModGraphSpec.hs b/test/Language/Fortran/Analysis/ModGraphSpec.hs index 75e28f5f..dd2528db 100644 --- a/test/Language/Fortran/Analysis/ModGraphSpec.hs +++ b/test/Language/Fortran/Analysis/ModGraphSpec.hs @@ -18,7 +18,7 @@ spec = -- we are understanding this correctly (via the dependency graph -- and then its topological sort). testDependencyList = do - paths' <- expandDirs ["test-data/module"] + paths' <- expandDirs ["test-data" "module"] mg <- genModGraph (Just Fortran90) ["."] Nothing paths' let list = modGraphToList mg let files = ["leaf.f90", "mid1.f90", "mid2.f90", "top.f90"]