Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
rlazo committed Mar 18, 2024
1 parent c06a8fe commit 4895f35
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ import com.google.ai.client.generativeai.common.util.goldenStreamingFile
import io.kotest.assertions.throwables.shouldThrow
import io.kotest.matchers.nulls.shouldNotBeNull
import io.kotest.matchers.shouldBe
import io.kotest.matchers.string.shouldContain
import io.ktor.http.HttpStatusCode
import kotlin.time.Duration.Companion.seconds
import kotlinx.coroutines.flow.collect
Expand Down Expand Up @@ -90,7 +91,7 @@ internal class StreamingSnapshotTests {
responseList.isEmpty() shouldBe false
val part = responseList.first().candidates?.first()?.content?.parts?.first() as? TextPart
part.shouldNotBeNull()
part.text shouldsContain "\""
part.text shouldContain "\""
}
}

Expand Down

0 comments on commit 4895f35

Please sign in to comment.