File tree 2 files changed +7
-7
lines changed
test/Spec/BotPlutusInterface
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 3
3
# Extensions necessary to tell fourmolu about
4
4
EXTENSIONS=" -o -XTypeApplications -o -XTemplateHaskell -o -XImportQualifiedPost -o -XPatternSynonyms -o -fplugin=RecordDotPreprocessor"
5
5
SOURCES=$( git ls-tree -r HEAD --full-tree --name-only | grep -E ' .*\.hs' )
6
- ~ /.local/bin/ fourmolu --mode check --check-idempotence $EXTENSIONS $SOURCES
6
+ fourmolu --mode inplace $EXTENSIONS $SOURCES
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ tests =
48
48
, testCase
49
49
" PABConfig example serialize/deserialize (without pcProtocolParams)"
50
50
( serializeDeserialize pabConfigExample
51
- @?= Right pabConfigExample{pcProtocolParams = def}
51
+ @?= Right pabConfigExample {pcProtocolParams = def}
52
52
)
53
53
, testCase
54
54
" PABConfig example serialize/deserialize (without pcProtocolParams)"
@@ -156,10 +156,10 @@ pabConfigExample =
156
156
[
157
157
( AnyPlutusScriptVersion PlutusScriptV2
158
158
, CostModel
159
- ( Map. fromList
160
- [ (" add_integer-cpu-arguments-intercept" , 123456 )
161
- ]
162
- )
159
+ ( Map. fromList
160
+ [ (" add_integer-cpu-arguments-intercept" , 123456 )
161
+ ]
162
+ )
163
163
)
164
164
]
165
165
, protocolParamPrices = Just (ExecutionUnitPrices {priceExecutionSteps = 1 % 9 , priceExecutionMemory = 1 % 10 })
@@ -178,7 +178,7 @@ pabConfigExample =
178
178
, pcProtocolParamsFile = " ./protocol.json3"
179
179
, pcLogLevel = Debug
180
180
, pcOwnPubKeyHash = " 0f45aaf1b2959db6e5ff94dbb1f823bf257680c3c723ac2d49f97546"
181
- , pcForceBudget = Just (1000 ,1000 )
181
+ , pcForceBudget = Just (1000 , 1000 )
182
182
, pcPort = 1021
183
183
, pcEnableTxEndpoint = True
184
184
}
You can’t perform that action at this time.
0 commit comments