@@ -112,10 +112,10 @@ class InstanaTests: InstanaTestCase {
112112 AssertTrue ( Instana . current!. session. collectionEnabled)
113113 AssertEqualAndNotNil ( Instana . sessionID, Instana . current? . session. id. uuidString)
114114 AssertEqualAndNotNil ( Instana . reportingURL, reportingURL)
115+ AssertEqualAndNotNil ( Instana . current? . session. configuration. key, key)
115116 AssertEqualAndNotNil ( Instana . current? . session. configuration. reportingURL, reportingURL)
116117 AssertEqualAndNotNil ( Instana . current? . session. configuration. httpCaptureConfig, . automatic)
117- AssertEqualAndNotNil ( Instana . current? . session. configuration,
118- . default( key: key, reportingURL: reportingURL, enableCrashReporting: false ) )
118+ AssertFalse ( Instana . current!. session. configuration. monitorTypes. contains ( . crash) )
119119 AssertEqualAndNotNil ( Instana . current? . session. configuration. slowSendInterval, 0.0 )
120120 AssertEqualAndNotNil ( Instana . current? . session. configuration. usiRefreshTimeIntervalInHrs, defaultUsiRefreshTimeIntervalInHrs)
121121 }
@@ -174,10 +174,6 @@ class InstanaTests: InstanaTestCase {
174174 AssertEqualAndNotNil ( Instana . reportingURL, reportingURL)
175175 AssertEqualAndNotNil ( Instana . current? . session. configuration. reportingURL, reportingURL)
176176 AssertEqualAndNotNil ( Instana . current? . session. configuration. httpCaptureConfig, . manual)
177- AssertEqualAndNotNil ( Instana . current? . session. configuration,
178- . default( key: key, reportingURL: reportingURL,
179- httpCaptureConfig: httpCaptureConfig,
180- enableCrashReporting: false ) )
181177 }
182178
183179 func test_setup_automaticAndManual_http_capture( ) {
@@ -196,10 +192,6 @@ class InstanaTests: InstanaTestCase {
196192 AssertEqualAndNotNil ( Instana . reportingURL, reportingURL)
197193 AssertEqualAndNotNil ( Instana . current? . session. configuration. reportingURL, reportingURL)
198194 AssertEqualAndNotNil ( Instana . current? . session. configuration. httpCaptureConfig, . automaticAndManual)
199- AssertEqualAndNotNil ( Instana . current? . session. configuration,
200- . default( key: key, reportingURL: reportingURL,
201- httpCaptureConfig: httpCaptureConfig,
202- enableCrashReporting: false ) )
203195 }
204196
205197 func test_setup_and_expect_SessionProfileBeacon( ) {
0 commit comments