Skip to content

Commit

Permalink
remove unicode character causing Windows to go crazy
Browse files Browse the repository at this point in the history
  • Loading branch information
KtorZ committed Sep 7, 2020
1 parent 2427e60 commit dba03b6
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
{-# LANGUAGE DuplicateRecordFields #-}
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
{-# LANGUAGE NamedFieldPuns #-}
{-# LANGUAGE NumericUnderscores #-}
{-# LANGUAGE ScopedTypeVariables #-}
{-# LANGUAGE TypeApplications #-}
Expand Down Expand Up @@ -214,7 +213,7 @@ estimateMaxInputsTests net cases = do
describe ("estimateMaxNumberOfInputs for "<>k<>" on "<>show net) $ do
forM_ cases $ \(GivenNumOutputs nOuts, ExpectedNumInputs nInps) -> do
let (o,i) = (show nOuts, show nInps)
it ("order of magnitude, nOuts = " <> o <> " nInps = " <> i) $
it ("order of magnitude, nOuts = " <> o <> " => nInps = " <> i) $
_estimateMaxNumberOfInputs @k net (Quantity 4096) Nothing nOuts
`shouldBe` nInps

Expand Down

0 comments on commit dba03b6

Please sign in to comment.