Skip to content

Commit

Permalink
FIX e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
quentinovega committed Jul 13, 2023
1 parent 91526eb commit 84c1364
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 46 deletions.
2 changes: 1 addition & 1 deletion daikoku/app/domain/json.scala
Original file line number Diff line number Diff line change
Expand Up @@ -3414,7 +3414,7 @@ object json {
override def reads(json: JsValue): JsResult[ApiKeyConsumptionState] = json.as[String] match {
case "completed" => JsSuccess(ApiKeyConsumptionState.Completed)
case "inProgress" => JsSuccess(ApiKeyConsumptionState.InProgress)
case str => JsError(s"Bad TeamPermission value: $str")
case str => JsError(s"Bad ApiKeyConsumptionState value: $str")
}


Expand Down
Loading

0 comments on commit 84c1364

Please sign in to comment.