Skip to content

Commit

Permalink
Update scalafmt-core to 3.0.7 (#115)
Browse files Browse the repository at this point in the history
* Update scalafmt-core to 3.0.7

* Reformat with scalafmt 3.0.7
  • Loading branch information
scala-steward authored Oct 21, 2021
1 parent 25ea661 commit d3cd009
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = "3.0.6"
version = "3.0.7"
project.git = true
maxColumn = 120
align.preset = "more"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,10 +113,10 @@ trait CreatableTests[F[_], Resource <: { def metadata: Option[ObjectMeta] }]
test(s"update a $resourceName already created with resource") {
usingMinikube { implicit client =>
for {
namespaceName <- Applicative[F].pure(resourceName.toLowerCase)
resourceName <- Applicative[F].pure("update-resource-1")
_ <- createChecked(namespaceName, resourceName)
updatedResource <- retry(createOrUpdateWithResource(namespaceName, resourceName))
namespaceName <- Applicative[F].pure(resourceName.toLowerCase)
resourceName <- Applicative[F].pure("update-resource-1")
_ <- createChecked(namespaceName, resourceName)
updatedResource <- retry(createOrUpdateWithResource(namespaceName, resourceName))
_ = checkUpdated(updatedResource)
retrievedResource <- getChecked(namespaceName, resourceName)
_ = checkUpdated(retrievedResource)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ trait ReplaceableTests[F[_], Resource <: { def metadata: Option[ObjectMeta] }]
test(s"replace a $resourceName with resource") {
usingMinikube { implicit client =>
for {
namespaceName <- Applicative[F].pure(resourceName.toLowerCase)
resourceName <- Applicative[F].pure("some-resource-1")
_ <- createChecked(namespaceName, resourceName)
replacedResource <- retry(replaceWithResource(namespaceName, resourceName))
namespaceName <- Applicative[F].pure(resourceName.toLowerCase)
resourceName <- Applicative[F].pure("some-resource-1")
_ <- createChecked(namespaceName, resourceName)
replacedResource <- retry(replaceWithResource(namespaceName, resourceName))
_ = checkUpdated(replacedResource)
retrievedResource <- getChecked(namespaceName, resourceName)
_ = checkUpdated(retrievedResource)
Expand Down

0 comments on commit d3cd009

Please sign in to comment.