Skip to content

Commit 278b5e2

Browse files
authored
Fix warning on Swift 6.0 (#183)
1 parent 1573bdf commit 278b5e2

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

[email protected]

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,6 @@ let package = Package(
2020
name: "StructuredQueriesCore",
2121
targets: ["StructuredQueriesCore"]
2222
),
23-
.library(
24-
name: "StructuredQueriesTestSupport",
25-
targets: ["StructuredQueriesTestSupport"]
26-
),
2723
.library(
2824
name: "StructuredQueriesSQLite",
2925
targets: ["StructuredQueriesSQLite"]

Tests/StructuredQueriesTests/ViewsTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ extension SnapshotTests {
241241
"""
242242
SELECT "reminderWithLists"."reminderID", "reminderWithLists"."reminderTitle", "reminderWithLists"."remindersListTitle"
243243
FROM "reminderWithLists"
244-
WHERE ("reminderWithLists"."reminderID" = 1)
244+
WHERE ("reminderWithLists"."reminderID" IN (1))
245245
"""
246246
} results: {
247247
"""

0 commit comments

Comments
 (0)