Skip to content

Commit 5b1435e

Browse files
committed
Fix failing tests
1 parent f5f54e3 commit 5b1435e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

StreamVideoSwiftUITests/CallView/VisibilityThresholdModifier_Tests.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ final class VisibilityThresholdModifier_Tests: XCTestCase {
6767
in: bounds,
6868
threshold: 0.5,
6969
viewRect: CGRect(x: -10, y: 0, width: 60, height: 100),
70-
expected: (false, true)
70+
expected: (true, true)
7171
)
7272
}
7373

@@ -76,7 +76,7 @@ final class VisibilityThresholdModifier_Tests: XCTestCase {
7676
in: bounds,
7777
threshold: 0.5,
7878
viewRect: CGRect(x: 0, y: 110, width: 100, height: 60),
79-
expected: (false, false)
79+
expected: (false, true)
8080
)
8181
}
8282

@@ -85,7 +85,7 @@ final class VisibilityThresholdModifier_Tests: XCTestCase {
8585
in: bounds,
8686
threshold: 0.5,
8787
viewRect: CGRect(x: 110, y: 0, width: 60, height: 100),
88-
expected: (false, false)
88+
expected: (true, false)
8989
)
9090
}
9191

0 commit comments

Comments
 (0)