Skip to content

Commit

Permalink
Merge pull request #266 from TravisWhitaker/grapesy-tests-fix-macos
Browse files Browse the repository at this point in the history
Fix tests on MacOS
  • Loading branch information
edsko authored Jan 7, 2025
2 parents 43f48bd + 868c337 commit da3e531
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion grapesy/test-grapesy/Test/Regression/Issue238.hs
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ testWith handlers client = do
where
serverConfig :: Server.ServerConfig
serverConfig = Server.ServerConfig {
serverInsecure = Just $ Server.InsecureConfig Nothing 0
serverInsecure = Just $ Server.InsecureConfig (Just "127.0.0.1") 0
, serverSecure = Nothing
}

Expand Down
2 changes: 1 addition & 1 deletion tutorials/basics/app/Server.hs
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,6 @@ main = do
where
config :: ServerConfig
config = ServerConfig {
serverInsecure = Just (InsecureConfig Nothing defaultInsecurePort)
serverInsecure = Just (InsecureConfig (Just "0.0.0.0") defaultInsecurePort)
, serverSecure = Nothing
}
2 changes: 1 addition & 1 deletion tutorials/lowlevel/app/Server.hs
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,6 @@ main = do
where
config :: ServerConfig
config = ServerConfig {
serverInsecure = Just (InsecureConfig Nothing defaultInsecurePort)
serverInsecure = Just (InsecureConfig (Just "0.0.0.0") defaultInsecurePort)
, serverSecure = Nothing
}
2 changes: 1 addition & 1 deletion tutorials/metadata/app/Server.hs
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,6 @@ main =
where
config :: ServerConfig
config = ServerConfig {
serverInsecure = Just (InsecureConfig Nothing defaultInsecurePort)
serverInsecure = Just (InsecureConfig (Just "0.0.0.0") defaultInsecurePort)
, serverSecure = Nothing
}
2 changes: 1 addition & 1 deletion tutorials/monadstack/app/Server.hs
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,6 @@ main = do
where
config :: ServerConfig
config = ServerConfig {
serverInsecure = Just (InsecureConfig Nothing defaultInsecurePort)
serverInsecure = Just (InsecureConfig (Just "0.0.0.0") defaultInsecurePort)
, serverSecure = Nothing
}
2 changes: 1 addition & 1 deletion tutorials/quickstart/app/Server.hs
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ main =
where
config :: ServerConfig
config = ServerConfig {
serverInsecure = Just (InsecureConfig Nothing defaultInsecurePort)
serverInsecure = Just (InsecureConfig (Just "0.0.0.0") defaultInsecurePort)
, serverSecure = Nothing
}
2 changes: 1 addition & 1 deletion tutorials/trailers-only/app/Server.hs
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,6 @@ main = do
where
config :: ServerConfig
config = ServerConfig {
serverInsecure = Just (InsecureConfig Nothing defaultInsecurePort)
serverInsecure = Just (InsecureConfig (Just "0.0.0.0") defaultInsecurePort)
, serverSecure = Nothing
}

0 comments on commit da3e531

Please sign in to comment.