From d75aa109bcd43b27656004b4d97f65a5c1e59edd Mon Sep 17 00:00:00 2001 From: John Ky Date: Mon, 3 Aug 2020 13:37:06 +1000 Subject: [PATCH] Stuff --- cardano-cli/cardano-cli.cabal | 1 - cardano-node/test/Test/Cardano/Node/Chairman.hs | 12 ++++++------ 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/cardano-cli/cardano-cli.cabal b/cardano-cli/cardano-cli.cabal index 9c279c62613..c0a6cb38cb8 100644 --- a/cardano-cli/cardano-cli.cabal +++ b/cardano-cli/cardano-cli.cabal @@ -225,7 +225,6 @@ test-suite cardano-cli-test Test.Pioneers.Exercise2 Test.Pioneers.Exercise3 Test.Pioneers.Exercise4 - Test.Process default-language: Haskell2010 default-extensions: NoImplicitPrelude diff --git a/cardano-node/test/Test/Cardano/Node/Chairman.hs b/cardano-node/test/Test/Cardano/Node/Chairman.hs index 2bd59c40e4d..51c3ab3c115 100644 --- a/cardano-node/test/Test/Cardano/Node/Chairman.hs +++ b/cardano-node/test/Test/Cardano/Node/Chairman.hs @@ -16,13 +16,13 @@ prop_spawnOneNode :: Property prop_spawnOneNode = H.propertyOnce $ do (_mIn, _mOut, _mErr, hProcess) <- H.createProcess =<< H.procNode [ "run" - , "--database-path", "../db/node-2/" - , "--socket-path", "../socket/node-2-socket" + , "--database-path", "db/node-2/" + , "--socket-path", "socket/node-2-socket" , "--port", "3002" - , "--topology", "../configuration/defaults/simpleview/topology-node-2.json" - , "--config", "../configuration/defaults/simpleview/config-2.yaml" - , "--signing-key", "../configuration/defaults/simpleview/genesis/delegate-keys.002.key" - , "--delegation-certificate", "../configuration/defaults/simpleview/genesis/delegation-cert.002.json" + , "--topology", "configuration/defaults/simpleview/topology-node-2.json" + , "--config", "configuration/defaults/simpleview/config-2.yaml" + , "--signing-key", "configuration/defaults/simpleview/genesis/delegate-keys.002.key" + , "--delegation-certificate", "configuration/defaults/simpleview/genesis/delegation-cert.002.json" ] H.threadDelay 10000000