File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
kmp/feed-datasource/cloud/src/commonTest/kotlin/io/github/reactivecircus/kstreamlined/kmp/feed/datasource/util Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ ksp = "2.0.0-Beta1-1.0.15"
4
4
androidGradlePlugin = " 8.3.0-alpha16"
5
5
gradle-toolchainsResolverPlugin = " 0.7.0"
6
6
appVersioning = " 1.3.1"
7
- apollo = " 4.0.0-beta.2 "
7
+ apollo = " 4.0.0-beta.3 "
8
8
googleServices = " 4.4.0"
9
9
wire = " 4.9.3"
10
10
detekt = " 1.23.4"
Original file line number Diff line number Diff line change 1
1
package io.github.reactivecircus.kstreamlined.kmp.feed.datasource.util
2
2
3
- import com.apollographql.apollo3.exception.ApolloGraphQLException
4
3
import com.apollographql.apollo3.exception.ApolloNetworkException
5
4
import com.apollographql.apollo3.exception.ApolloParseException
6
5
import com.apollographql.apollo3.exception.CacheMissException
6
+ import com.apollographql.apollo3.exception.JsonEncodingException
7
7
import com.apollographql.apollo3.exception.NoDataException
8
8
import kotlin.test.Test
9
9
import kotlin.test.assertFalse
@@ -76,7 +76,7 @@ class ApolloApiErrorCheckerTest {
76
76
ApolloApiErrorChecker .isNetworkError(
77
77
ApolloParseException ().apply {
78
78
addSuppressed(CacheMissException (" key" , null ))
79
- addSuppressed(ApolloGraphQLException (emptyList() ))
79
+ addSuppressed(JsonEncodingException ( " " ))
80
80
}
81
81
)
82
82
)
@@ -89,7 +89,7 @@ class ApolloApiErrorCheckerTest {
89
89
NoDataException (
90
90
cause = ApolloParseException ().apply {
91
91
addSuppressed(CacheMissException (" key" , null ))
92
- addSuppressed(ApolloGraphQLException (emptyList() ))
92
+ addSuppressed(JsonEncodingException ( " " ))
93
93
}
94
94
)
95
95
)
You can’t perform that action at this time.
0 commit comments