Skip to content

Commit

Permalink
use string interpolation
Browse files Browse the repository at this point in the history
Co-authored-by: G. Allais <[email protected]>
  • Loading branch information
mattpolzin and gallais authored Jul 18, 2024
1 parent f768bac commit f833f35
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libs/test/Test/Golden.idr
Original file line number Diff line number Diff line change
Expand Up @@ -634,8 +634,8 @@ poolRunner opts pool
checkReq req = do
mfp <- satisfy req
let msg = case mfp of
Nothing => "" ++ (name req) ++ " not found"
Just fp => "✓ Found " ++ (name req) ++ " at " ++ fp
Nothing => "\{name req} not found"
Just fp => "✓ Found \{name req} at \{fp}"
pure (mfp, msg)

separator : String
Expand Down

0 comments on commit f833f35

Please sign in to comment.