Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
salamonpavel committed May 22, 2024
1 parent 38a9668 commit 34cfee0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ object CreateCheckpointEndpointSpec extends ZIOSpecDefault with Endpoints with T

private val createCheckpointServerEndpoint =
createCheckpointEndpoint.zServerLogic(
CheckpointController.createCheckpoint _ andThen(_.map(SingleSuccessResponse(_)))
CheckpointController.createCheckpoint
// CheckpointController.createCheckpoint _ andThen(_.map(SingleSuccessResponse(_)))
)

def spec: Spec[TestEnvironment with Scope, Any] = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ object CreatePartitioningEndpointSpec extends ZIOSpecDefault with Endpoints with

private val createPartitioningServerEndpoint =
createPartitioningEndpoint.zServerLogic(
PartitioningController.createPartitioningIfNotExists _ andThen (_.map(SingleSuccessResponse(_)))
// PartitioningController.createPartitioningIfNotExists _ andThen (_.map(SingleSuccessResponse(_)))
PartitioningController.createPartitioningIfNotExists
)

def spec: Spec[TestEnvironment with Scope, Any] = {
Expand Down

0 comments on commit 34cfee0

Please sign in to comment.