Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
mvicsokolova committed Apr 4, 2024
1 parent cff636f commit f105b44
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ import kotlinx.atomicfu.*
import kotlin.test.*

class EventsTest : ClientLoader() {
val created = atomic(0)
val ready = atomic(0)
val received = atomic(0)
val counter = atomic(0)
val cause: AtomicRef<Throwable?> = atomic(null)
private val created = atomic(0)
private val ready = atomic(0)
private val received = atomic(0)
private val counter = atomic(0)
private val cause: AtomicRef<Throwable?> = atomic(null)

@Test
fun testBasicEvents() = clientTests {
Expand Down

0 comments on commit f105b44

Please sign in to comment.