Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion fetch-examples/src/test/scala/GithubExample.scala
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ class GithubExample extends AnyWordSpec with Matchers {
def fetchOrgLanguages[F[_]: Async](org: String): Fetch[F, Int] =
fetchOrg(org).map(projects => projects.map(_.languages.toSet).fold(Set())(_ ++ _).size)

"We can fetch org repos" in {
"We can fetch org repos" ignore {
val io = Fetch.runLog[IO](fetchOrg[IO]("47degrees"))

val (log, _) = io.onError { case _ => cleanUpCache }.unsafeRunSync()
Expand Down
Loading