Skip to content

Commit

Permalink
Correct range for sequence in test
Browse files Browse the repository at this point in the history
  • Loading branch information
OptimumCode committed Oct 13, 2023
1 parent 6802533 commit be88381
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ class ParsedMessageTest {
private const val TEST_PROTOCOL = "test-protocol"
private const val TEST_SESSION_ALIAS = "test-session-alias"
private const val TEST_MESSAGE_TYPE = "test-message-type"
private val TEST_SEQUENCE = Random.nextLong(from = 0, until = Long.MAX_VALUE)
private val TEST_SEQUENCE = Random.nextLong(from = Long.MIN_VALUE + 1, until = Long.MAX_VALUE)
private val TEST_SUB_SEQUENCE = listOf(
Random.nextInt(from = 0, until = Int.MAX_VALUE),
Random.nextInt(from = 0, until = Int.MAX_VALUE),
Expand Down

0 comments on commit be88381

Please sign in to comment.