Updated on 2026-08-14

This commit is contained in:
Tangem 2025-07-23 14:11:06 +05:00
parent 9baa0a556b
commit 15e7df8d41
3 changed files with 4 additions and 3 deletions

View file

@ -140,7 +140,7 @@ internal class DefaultQuotesFetcherTest {
@Test
fun `fetch if all currencies ids ARE CACHED and EXPIRED`() = runTest {
// Arrange
val cachedQuote = MockQuoteResponseFactory.createSinglePrice(BigDecimal.ZERO)
val cachedQuote = MockQuoteResponseFactory.createSinglePrice(BigDecimal.ONE)
val apiQuote = MockQuoteResponseFactory.createSinglePrice(BigDecimal.ONE)
val apiResponse = ApiResponse.Success(
data = QuotesResponse(quotes = mapOf("ethereum" to apiQuote)),