Skip to content

Commit

Permalink
Apollo 4.0.0-beta.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
ychescale9 committed Dec 5, 2023
1 parent bff6f83 commit f7f2025
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ksp = "2.0.0-Beta1-1.0.15"
androidGradlePlugin = "8.3.0-alpha16"
gradle-toolchainsResolverPlugin = "0.7.0"
appVersioning = "1.3.1"
apollo = "4.0.0-beta.2"
apollo = "4.0.0-beta.3"
googleServices = "4.4.0"
wire = "4.9.3"
detekt = "1.23.4"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package io.github.reactivecircus.kstreamlined.kmp.feed.datasource.util

import com.apollographql.apollo3.exception.ApolloGraphQLException
import com.apollographql.apollo3.exception.ApolloNetworkException
import com.apollographql.apollo3.exception.ApolloParseException
import com.apollographql.apollo3.exception.CacheMissException
import com.apollographql.apollo3.exception.JsonEncodingException
import com.apollographql.apollo3.exception.NoDataException
import kotlin.test.Test
import kotlin.test.assertFalse
Expand Down Expand Up @@ -76,7 +76,7 @@ class ApolloApiErrorCheckerTest {
ApolloApiErrorChecker.isNetworkError(
ApolloParseException().apply {
addSuppressed(CacheMissException("key", null))
addSuppressed(ApolloGraphQLException(emptyList()))
addSuppressed(JsonEncodingException(""))
}
)
)
Expand All @@ -89,7 +89,7 @@ class ApolloApiErrorCheckerTest {
NoDataException(
cause = ApolloParseException().apply {
addSuppressed(CacheMissException("key", null))
addSuppressed(ApolloGraphQLException(emptyList()))
addSuppressed(JsonEncodingException(""))
}
)
)
Expand Down

0 comments on commit f7f2025

Please sign in to comment.