@@ -163,8 +163,8 @@ extension SnapshotTests {
163
163
public typealias QueryValue = Row
164
164
public let selection: [(aliasName: String, expression: StructuredQueriesCore.QueryFragment)]
165
165
public init(
166
- title: some StructuredQueriesCore.QueryExpression<Swift.String> = StructuredQueriesCore. BindQueryExpression( " " ),
167
- notes: some StructuredQueriesCore.QueryExpression<[String].JSONRepresentation> = StructuredQueriesCore. BindQueryExpression([])
166
+ title: some StructuredQueriesCore.QueryExpression<Swift.String> = BindQueryExpression( " " ),
167
+ notes: some StructuredQueriesCore.QueryExpression<[String].JSONRepresentation> = BindQueryExpression([])
168
168
) {
169
169
self.selection = [( " title " , title.queryFragment), ( " notes " , notes.queryFragment)]
170
170
}
@@ -228,7 +228,7 @@ extension SnapshotTests {
228
228
public let selection: [(aliasName: String, expression: StructuredQueriesCore.QueryFragment)]
229
229
public init(
230
230
id: some StructuredQueriesCore.QueryExpression<Int>,
231
- title: some StructuredQueriesCore.QueryExpression<Swift.String> = StructuredQueriesCore. BindQueryExpression( " " )
231
+ title: some StructuredQueriesCore.QueryExpression<Swift.String> = BindQueryExpression( " " )
232
232
) {
233
233
self.selection = [( " id " , id.queryFragment), ( " title " , title.queryFragment)]
234
234
}
@@ -335,7 +335,7 @@ extension SnapshotTests {
335
335
public let selection: [(aliasName: String, expression: StructuredQueriesCore.QueryFragment)]
336
336
public init(
337
337
id: some StructuredQueriesCore.QueryExpression<Int>,
338
- title: some StructuredQueriesCore.QueryExpression<Swift.String> = StructuredQueriesCore. BindQueryExpression("")
338
+ title: some StructuredQueriesCore.QueryExpression<Swift.String> = BindQueryExpression("")
339
339
) {
340
340
self.selection = [("id", id.queryFragment), ("title", title.queryFragment)]
341
341
}
0 commit comments