Skip to content

Commit

Permalink
Add missing any to a protocol composition (#185)
Browse files Browse the repository at this point in the history
  • Loading branch information
AnthonyLatsis authored Aug 6, 2024
1 parent f697d32 commit 3c8c6aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/SQLKitTests/BaseTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ final class SQLKitTests: XCTestCase {
}

func testInsertWithArrayOfEncodable() {
func weird(_ builder: SQLInsertBuilder, values: some Sequence<Encodable & Sendable>) -> SQLInsertBuilder {
func weird(_ builder: SQLInsertBuilder, values: some Sequence<any Encodable & Sendable>) -> SQLInsertBuilder {
builder.values(Array(values))
}

Expand Down

0 comments on commit 3c8c6aa

Please sign in to comment.