Skip to content

Commit

Permalink
dataconnect: tests: increase tag size from 20 to 50 characters, to re…
Browse files Browse the repository at this point in the history
…duce the chance of collisions (#6521)
  • Loading branch information
dconeybe authored Nov 18, 2024
1 parent f7acdac commit 4bc552f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ object DataConnectArb {
}
}

fun tag(string: Arb<String> = Arb.string(size = 20, Codepoint.alphanumeric())): Arb<String> =
fun tag(string: Arb<String> = Arb.string(size = 50, Codepoint.alphanumeric())): Arb<String> =
arbitrary {
"tag_${string.bind()}"
}
Expand Down

0 comments on commit 4bc552f

Please sign in to comment.