Skip to content

Commit b8ba2e8

Browse files
Merge remote-tracking branch 'origin/feat/replay' into kw/do-not-convert-sentry-events
2 parents ca7e0a3 + 5f3a5c8 commit b8ba2e8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

RNSentryAndroidTester/app/src/test/java/io/sentry/rnsentryandroidtester/RNSentryReplayBreadcrumbConverterTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,4 +71,4 @@ class RNSentryReplayBreadcrumbConverterTest {
7171
mapOf("name" to "name7")))
7272
assertEquals("label5(element5, file5) > label4(file4) > label3(element3) > label2", actual)
7373
}
74-
}
74+
}

RNSentryCocoaTester/RNSentryCocoaTesterTests/RNSentryReplayBreadcrumbConverterTests.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
import XCTest
22

33
final class RNSentryReplayBreadcrumbConverterTests: XCTestCase {
4-
4+
55
func testNotConvertSentryEventBreadcrumb() {
66
let converter = RNSentryReplayBreadcrumbConverter()
77
let testBreadcrumb = Breadcrumb()
88
testBreadcrumb.category = "sentry.event"
99
let actual = converter.convert(from: testBreadcrumb)
1010
XCTAssertNil(actual)
1111
}
12-
12+
1313
func testNotConvertSentryTransactionBreadcrumb() {
1414
let converter = RNSentryReplayBreadcrumbConverter()
1515
let testBreadcrumb = Breadcrumb()
1616
testBreadcrumb.category = "sentry.transaction"
1717
let actual = converter.convert(from: testBreadcrumb)
1818
XCTAssertNil(actual)
1919
}
20-
20+
2121
func testTouchMessageReturnsNilOnEmptyArray() throws {
2222
let actual = RNSentryReplayBreadcrumbConverter.getTouchPathMessage(from: [])
2323
XCTAssertEqual(actual, nil);

0 commit comments

Comments
 (0)