-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bump Misk and Kotlin 2 #419
Conversation
adrw
commented
Feb 11, 2025
•
edited
Loading
edited
- Fix Kotlin Coroutines deprecation warnings currently failing tests
7ac052c
to
e2c8cc6
Compare
e2c8cc6
to
dd28ca1
Compare
LG! |
@@ -214,23 +192,13 @@ class VariableCapacityChannelTest { | |||
val receiveChannel = variableCapacityChannel.proxy(this) | |||
assertThat(size.get()).isEqualTo(0) | |||
|
|||
upstream.trySend("test").isSuccess | |||
assertThat(size.get()).isEqualTo(1) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we still want this count?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A lot of these assertions relied on being run in a blocking test and are impacted by the coroutine scheduling which is inconsistent, hence why most of them were removed in the version bump which moves the tests to run in regular coroutines.
0cabed8
to
125d759
Compare
Thanks @swankjesse for pairing on this! |