Skip to content

Commit bc6a400

Browse files
committed
[realppl 3] Arithmetic and comparison expressions (#14849)
Remove Fuzzer
1 parent 8e0695d commit bc6a400

File tree

12 files changed

+3115
-98
lines changed

12 files changed

+3115
-98
lines changed

Firestore/Example/Firestore.xcodeproj/project.pbxproj

Lines changed: 50 additions & 20 deletions
Large diffs are not rendered by default.

Firestore/Example/Podfile

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -126,13 +126,6 @@ if is_platform(:ios)
126126

127127
pod 'leveldb-library'
128128
end
129-
130-
target 'Firestore_FuzzTests_iOS' do
131-
inherit! :search_paths
132-
platform :ios, '15.0'
133-
134-
pod 'LibFuzzer', :podspec => 'LibFuzzer.podspec', :inhibit_warnings => true
135-
end
136129
end
137130
end
138131

Firestore/Swift/Tests/Integration/PipelineApiTests.swift

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -310,12 +310,12 @@ final class PipelineApiTests: FSTIntegrationTestCase {
310310
]
311311
)
312312

313-
// One special Field value is conveniently exposed as constructor to help the user reference reserved field values of __name__.
314-
_ = db.pipeline().collection("books")
315-
.addFields([
316-
DocumentId()
317-
]
318-
)
313+
// One special Field value is conveniently exposed as constructor to help the user reference
314+
// reserved field values of __name__.
315+
_ = db.pipeline().collection("books")
316+
.addFields([
317+
DocumentId(),
318+
])
319319
}
320320

321321
func testConstant() async throws {

0 commit comments

Comments
 (0)