We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
m
1 parent 9b56e7d commit 18659acCopy full SHA for 18659ac
proptest/src/test/scala/GraphGen.scala
@@ -27,9 +27,9 @@ object GraphGen {
27
28
def generateName: Gen[String] = SchemaGenerators.identifier.retryUntil(isNameAvailable)
29
30
- // See https://github.com/google/protobuf/issues/2738
+ // See https://github.com/protocolbuffers/protobuf/issues/10834
31
def generateJavaPackageName: Gen[String] =
32
- SchemaGenerators.identifier.retryUntil(s => s != "key" && isNameAvailable(s))
+ SchemaGenerators.identifier.retryUntil(s => s != "m" && isNameAvailable(s))
33
}
34
35
val ROOT_NAMESPACE = Namespace(Set("foo", "bar"), None)
0 commit comments