Skip to content

Commit

Permalink
fix: CBOR protocol test assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
lauzadis committed Dec 18, 2024
1 parent b39e389 commit 33b571f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ open class HttpProtocolUnitTestRequestGenerator protected constructor(builder: B

write("")
write("val expectedRequest = #L(#T(expectedBytes))", inputDeserializer.name, RuntimeTypes.Serde.SerdeCbor.CborDeserializer)
write("val actualRequest = #L(#T(expectedBytes))", inputDeserializer.name, RuntimeTypes.Serde.SerdeCbor.CborDeserializer)
write("val actualRequest = #L(#T(actualBytes))", inputDeserializer.name, RuntimeTypes.Serde.SerdeCbor.CborDeserializer)
write("assertEquals(expectedRequest, actualRequest)")
}
writer.write("")
Expand Down

0 comments on commit 33b571f

Please sign in to comment.