Skip to content

Commit

Permalink
mark another flaky test as such
Browse files Browse the repository at this point in the history
  • Loading branch information
hochgi committed Dec 2, 2024
1 parent f7e1de4 commit 4310523
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion zio-http/jvm/src/test/scala/zio/http/endpoint/AuthSpec.scala
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package zio.http.endpoint

import zio.Config.Secret
import zio.test.TestAspect.flaky
import zio.test._
import zio.{Scope, ZIO, durationInt}

Expand Down Expand Up @@ -151,7 +152,7 @@ object AuthSpec extends ZIOSpecDefault {
.catchAllCause(c => ZIO.logInfoCause(c)) <* ZIO.sleep(1.seconds)
response <- response
} yield assertTrue(response == "admin")
},
} @@ flaky,
test("Auth basic or bearer with context and endpoint client") {
val endpoint =
Endpoint(Method.GET / "multiAuth")
Expand Down

0 comments on commit 4310523

Please sign in to comment.