mirror of
https://github.com/google/nomulus.git
synced 2025-07-22 18:55:58 +02:00
Fix failing BillingEmailUtilsTest assertion on content type
The new version of the framework that works correctly for this isn't externally available quite yet, so leave it at text/plain for the time being. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=181817266
This commit is contained in:
parent
315e6d57bf
commit
fe7cc4f782
1 changed files with 3 additions and 1 deletions
|
@ -109,8 +109,10 @@ public class BillingEmailUtilsTest {
|
||||||
.isEqualTo("Attached is the 2017-10 invoice for the domain registry.");
|
.isEqualTo("Attached is the 2017-10 invoice for the domain registry.");
|
||||||
assertThat(contents.getBodyPart(1)).isInstanceOf(BodyPart.class);
|
assertThat(contents.getBodyPart(1)).isInstanceOf(BodyPart.class);
|
||||||
BodyPart attachmentPart = contents.getBodyPart(1);
|
BodyPart attachmentPart = contents.getBodyPart(1);
|
||||||
|
// TODO(b/71631624): Fix content type in nomulus build to be "text/csv; charset=utf-8" once next
|
||||||
|
// version of framework is released.
|
||||||
assertThat(attachmentPart.getContentType())
|
assertThat(attachmentPart.getContentType())
|
||||||
.isEqualTo("text/csv; charset=utf-8; name=CRR-INV-2017-10.csv");
|
.isEqualTo("text/plain; name=CRR-INV-2017-10.csv");
|
||||||
assertThat(attachmentPart.getContent().toString()).isEqualTo("test,data\nhello,world");
|
assertThat(attachmentPart.getContent().toString()).isEqualTo("test,data\nhello,world");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue