This repository was archived by the owner on Aug 18, 2020. It is now read-only.
File tree 2 files changed +3
-4
lines changed
2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ ppShowT :: Show a => a -> Text
31
31
ppShowT = fromString . ppShow
32
32
33
33
transactionSpecs :: WalletRef -> WalletClient IO -> Spec
34
- transactionSpecs wRef wc = beforeAll_ (setupLogging (defaultTestConfiguration Debug )) $
34
+ transactionSpecs wRef wc = beforeAll_ (setupLogging " wallet-new_transactionSpecs " (defaultTestConfiguration Debug )) $
35
35
describe " Transactions" $ do
36
36
37
37
randomTest " posted transactions appear in the index" 1 $ do
Original file line number Diff line number Diff line change @@ -20,8 +20,7 @@ import Pos.Client.KeyStorage (getSecretKeysPlain)
20
20
import Pos.Wallet.Web.Account (genSaveRootKey )
21
21
22
22
import Pos.Launcher (HasConfigurations )
23
- import Pos.Util.Log.LoggerConfig (defaultTestConfiguration )
24
- import Pos.Util.Wlog (Severity (Debug ), setupLogging )
23
+ import Pos.Util.Wlog (setupTestLogging )
25
24
import Test.Pos.Util.QuickCheck.Property (assertProperty )
26
25
27
26
import Test.Hspec (Spec , beforeAll_ , describe )
@@ -37,7 +36,7 @@ import Servant
37
36
{-# ANN module ("HLint: ignore Reduce duplication" :: Text) #-}
38
37
39
38
spec :: Spec
40
- spec = beforeAll_ (setupLogging (defaultTestConfiguration Debug )) $
39
+ spec = beforeAll_ setupTestLogging $
41
40
withDefConfigurations $ \ _ _ _ ->
42
41
describe " development endpoint" $
43
42
describe " secret-keys" $ modifyMaxSuccess (const 10 ) deleteAllSecretKeysSpec
You can’t perform that action at this time.
0 commit comments