From f715bcbc323c310c557b4d4706f7275f0fd22e3f Mon Sep 17 00:00:00 2001 From: Mateusz Galazyn Date: Tue, 18 Jun 2024 19:42:48 +0200 Subject: [PATCH] wip wip --- cardano-testnet/src/Testnet/Property/Util.hs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cardano-testnet/src/Testnet/Property/Util.hs b/cardano-testnet/src/Testnet/Property/Util.hs index 427992658da..51400707885 100644 --- a/cardano-testnet/src/Testnet/Property/Util.hs +++ b/cardano-testnet/src/Testnet/Property/Util.hs @@ -97,8 +97,9 @@ workspace prefixPath f = withFrozenCallStack $ do -- | The 'FilePath' in '(FilePath -> H.Integration ())' is the work space directory. -- This is created (and returned) via 'H.workspace'. integrationWorkspace :: HasCallStack => FilePath -> (FilePath -> H.Integration ()) -> H.Property -integrationWorkspace workspaceName f = withFrozenCallStack $ +integrationWorkspace workspaceName f = withFrozenCallStack . f' $ integration $ H.runFinallies $ workspace workspaceName f + where f' = id isLinux :: Bool isLinux = os == "linux"