We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0fe8aeb commit 73bbcb3Copy full SHA for 73bbcb3
Tests/GOFeatureFlagTests/provider_tests.swift
@@ -40,20 +40,6 @@ class GoFeatureFlagProviderTests: XCTestCase {
40
41
XCTAssertEqual(1, mockNetworkService.dataCollectorCallCounter)
42
XCTAssertEqual(6, mockNetworkService.dataCollectorEventCounter)
43
-
44
- do {
45
- let httpBodyCollector = mockNetworkService.requests[mockNetworkService.requests.count - 1].httpBody!
46
- // print httpBodyCollector
47
- print(String(data: httpBodyCollector, encoding: .utf8)!)
48
- let json = try JSONSerialization.jsonObject(with: httpBodyCollector, options: []) as? [String: Any]
49
- guard let jsonDict = json else {
50
- XCTFail("Could not deserialize JSON")
51
- return
52
- }
53
- } catch {
54
- XCTFail("Error deserializing JSON: \(error)")
55
56
57
}
58
59
func testExporterMetadata() async {
0 commit comments