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.
1 parent 1ea86e7 commit 78b521dCopy full SHA for 78b521d
e2e/src/test/scala/scalapb/StructUtilsSpec.scala
@@ -78,7 +78,7 @@ class StructUtilsSpec extends AnyFlatSpec with Matchers with EitherValues {
78
Struct(
79
Map(
80
"optional_bytes" -> Value(
81
- Value.Kind.StringValue(new String(Base64.getEncoder.encode(someBytesValue.toByteArray)))
+ Value.Kind.StringValue(new String(Base64.getEncoder.encode(someBytesValue.toByteArray())))
82
)
83
84
@@ -213,7 +213,7 @@ class StructUtilsSpec extends AnyFlatSpec with Matchers with EitherValues {
213
214
215
Value.Kind.StringValue(
216
- new String(Base64.getEncoder.encode(someBytesValue.toByteArray))
+ new String(Base64.getEncoder.encode(someBytesValue.toByteArray()))
217
218
219
0 commit comments