Skip to content

Commit

Permalink
Update scalafmt-core to 3.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
47erbot authored Jan 21, 2022
1 parent a0d013d commit 1683284
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
version = 3.0.8
version = 3.3.2
style = defaultWithAlign
maxColumn = 100
runner.dialect = scala213

continuationIndent.callSite = 2

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ object CombinatorProperties extends BaseCombinatorProperties {
"genPickFromMapWithSuccessAndFailure should return a list of elements in the map, and a list of elements not in the map"
) = forAll(genPickFromMapWithSuccessAndFailure[String, String]) { case (map, succs, fails) =>
succs.forall(s => map.get(s).isDefined) &&
fails.forall(f => map.get(f).isEmpty)
fails.forall(f => map.get(f).isEmpty)
}

property(
Expand Down

0 comments on commit 1683284

Please sign in to comment.