Upgrade dependencies to be ready for release

* Revert `getMethodValue()` for `CookieTests` since it is removed in the SF SNAPSHOT
* Add `@Suppress("UNCHECKED_CAST")` to `FunctionsTests.kt` to suppress compilation warning
This commit is contained in:
Artem Bilan
2022-10-18 12:30:44 -04:00
parent 64f0e738a9
commit 0951738ab3
4 changed files with 32 additions and 24 deletions

View File

@@ -213,6 +213,7 @@ class FunctionsTests {
.isInstanceOf(Flow::class)
runBlocking {
@Suppress("UNCHECKED_CAST")
val strings = (payload as Flow<String>).toList()
assertThat(strings).containsExactly("Sync $testPayload #1", "Sync $testPayload #2", "Sync $testPayload #3")
}