Skip to content

Commit

Permalink
Merge pull request #1907 from aeons/fix-mediarange-gen
Browse files Browse the repository at this point in the history
Downcase type in MediaRange generator
  • Loading branch information
rossabaker committed Jun 3, 2018
2 parents 38ff543 + 52707a4 commit 299f615
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion project/build.properties
@@ -1 +1 @@
sbt.version=1.1.4
sbt.version=1.1.6
Expand Up @@ -276,7 +276,7 @@ trait ArbitraryInstances {
implicit val http4sArbitraryMediaRange: Arbitrary[MediaRange] =
Arbitrary {
for {
`type` <- genToken
`type` <- genToken.map(_.toLowerCase)
extensions <- http4sGenMediaRangeExtensions
} yield new MediaRange(`type`, extensions)
}
Expand Down

0 comments on commit 299f615

Please sign in to comment.