Skip to content

Commit de35817

Browse files
Slight rename
1 parent d5be991 commit de35817

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/Spec/BotPlutusInterface/Contract.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -885,10 +885,10 @@ commandEqual :: Text -> Text -> Bool
885885
commandEqual "" "" = True
886886
commandEqual "" _ = False
887887
commandEqual _ "" = False
888-
commandEqual expected actual = maybe False (on commandEqual dropToSpace postExp) mRestAct
888+
commandEqual expected actual = maybe False (on commandEqual dropToSpace postExp) mPostAct
889889
where
890890
(preExp, postExp) = Text.breakOn "?" expected
891-
mRestAct = Text.stripPrefix preExp actual
891+
mPostAct = Text.stripPrefix preExp actual
892892
dropToSpace = Text.dropWhile (/= ' ')
893893

894894
assertCommandCalled :: forall (w :: Type). MockContractState w -> Text -> Assertion

0 commit comments

Comments
 (0)