Skip to content

Commit

Permalink
More warning fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasjm committed Jul 26, 2024
1 parent 4c78d1a commit 60ad111
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ module Test.Sandwich.Contexts.Kubernetes.Namespace (
) where

import Control.Monad
import Control.Monad.Catch (MonadThrow)
import Control.Monad.IO.Unlift
import qualified Data.List as L
import Data.String.Interpolate
Expand All @@ -24,7 +23,7 @@ import UnliftIO.Process
-- | Around-style node to create a Kubernetes namespace, and destroy it at the end.
-- If you're installing something via Helm 3, you may not need this as you can just pass "--create-namespace".
withKubernetesNamespace :: (
MonadUnliftIO m, HasLabel context "kubernetesCluster" KubernetesClusterContext, MonadThrow m
MonadUnliftIO m, HasLabel context "kubernetesCluster" KubernetesClusterContext
)
-- | Namespace to create
=> Text
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,6 @@ import qualified System.Random as R
import Test.Sandwich (expectationFailure)
import UnliftIO.Exception

#ifdef mingw32_HOST_OS
import System.IO
#endif


-- * Exceptions

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module Test.Sandwich.WebDriver.Internal.Video where
import Control.Monad.IO.Unlift
import Control.Monad.Logger
import Control.Monad.Reader
import Data.Function
import Data.Function ((&))
import Data.String.Interpolate
import System.Process
import Test.Sandwich
Expand Down

0 comments on commit 60ad111

Please sign in to comment.