Skip to content

Commit

Permalink
ktfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
David Motsonashvili committed Jul 23, 2024
1 parent 97d9575 commit 8f69cf0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,14 +94,7 @@ internal constructor(
apiClient: String,
headerProvider: HeaderProvider?,
engine: HttpClientEngine,
) : this(
key,
model,
requestOptions,
engine,
apiClient,
headerProvider,
)
) : this(key, model, requestOptions, engine, apiClient, headerProvider)

private val model = fullModelName(model)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,9 @@ internal fun commonTest(
requestOptions,
TEST_CLIENT_ID,
null,
MockEngine { respond(channel, status, headersOf(HttpHeaders.ContentType, "application/json")) },
MockEngine {
respond(channel, status, headersOf(HttpHeaders.ContentType, "application/json"))
},
)
CommonTestScope(channel, apiController).block()
}
Expand Down

0 comments on commit 8f69cf0

Please sign in to comment.