Skip to content

Commit

Permalink
Stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
newhoggy committed Aug 3, 2020
1 parent 8d36cf4 commit d75aa10
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
1 change: 0 additions & 1 deletion cardano-cli/cardano-cli.cabal
Expand Up @@ -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
Expand Down
12 changes: 6 additions & 6 deletions cardano-node/test/Test/Cardano/Node/Chairman.hs
Expand Up @@ -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
Expand Down

0 comments on commit d75aa10

Please sign in to comment.