Skip to content

Commit

Permalink
Fix compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
alejandrohdezma committed Nov 6, 2024
1 parent ec6c275 commit 45c1ce1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,9 @@ class TypeTokenSuite extends CatsEffectSuite with Http4sMUnitSyntax {
assertIO(result, AccessToken.noop)
}

final case class Config(tokenType: TokenType)
private case class Config(tokenType: TokenType)

implicit val ConfigConfigReader: ConfigReader[Config] = ConfigReader.forProduct1("token-type")(Config.apply)
implicit private val ConfigConfigReader: ConfigReader[Config] = ConfigReader.forProduct1("token-type")(Config.apply)

def fixture(resource: String) = ResourceFunFixture {
Resource.make {
Expand Down

0 comments on commit 45c1ce1

Please sign in to comment.