Skip to content

Commit

Permalink
scalafmtAll
Browse files Browse the repository at this point in the history
  • Loading branch information
clairemcginty committed Aug 25, 2021
1 parent 0ec29f5 commit 2b5d364
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -609,9 +609,12 @@ final class CoderTest extends AnyFlatSpec with Matchers {
it should "deserialize Avro string fields as java.lang.Strings by default" in {
implicit val hasJavaStringType: Equality[Account] =
(roundtripped: Account, original: Any) =>
roundtripped.getName.getClass == classOf[String] && roundtripped.getType.getClass == classOf[String]
roundtripped.getName.getClass == classOf[
String
] && roundtripped.getType.getClass == classOf[String]

Account.newBuilder()
Account
.newBuilder()
.setId(0)
.setType("foo")
.setName("bar")
Expand Down

0 comments on commit 2b5d364

Please sign in to comment.