Skip to content

Commit

Permalink
TOSQUASH repeated binops as line separators at start of each line
Browse files Browse the repository at this point in the history
  • Loading branch information
nfrisby committed Jan 14, 2021
1 parent 1989892 commit 1412ba7
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -643,10 +643,10 @@ ppTestSetup :: TestSetup -> String
ppTestSetup TestSetup { testInitialTxs
, testMempoolCapOverride
} = unlines $
["Initial contents of the Mempool:"] <>
map ppTestTxWithHash testInitialTxs <>
["Mempool capacity override:"] <>
[show testMempoolCapOverride]
["Initial contents of the Mempool:"]
<> map ppTestTxWithHash testInitialTxs
<> ["Mempool capacity override:"]
<> [show testMempoolCapOverride]

ppTestTxWithHash :: TestTx -> String
ppTestTxWithHash x = condense
Expand Down

0 comments on commit 1412ba7

Please sign in to comment.