Commit e1722b95 authored by Sawyer Blatz's avatar Sawyer Blatz
Browse files

No issue: Fixes ErrorResponse instantiation

parent 310da6c1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -65,7 +65,7 @@ class AppRequestInterceptor(private val context: Context) : RequestInterceptor {

        context.components.analytics.metrics.track(Event.ErrorPageVisited(improvedErrorType))

        return RequestInterceptor.ErrorResponse(
        return RequestInterceptor.ErrorResponse.Content(
            ErrorPages.createErrorPage(
                context,
                improvedErrorType,
+3 −1
Original line number Diff line number Diff line
@@ -113,7 +113,9 @@ class AppRequestInterceptorTest {
    }

    private fun createActualErrorPage(error: ErrorType): String {
        return interceptor.onErrorRequest(session = mockk(), errorType = error, uri = null)?.data!!
        val errorPage = interceptor.onErrorRequest(session = mockk(), errorType = error, uri = null)
                as RequestInterceptor.ErrorResponse.Content
        return errorPage.data
    }

    private fun createExpectedErrorPage(error: ErrorType, @RawRes html: Int, @RawRes css: Int): String {