Skip to content

Commit 87aea3e

Browse files
committed
Fix test: should not omit required field in test request body
1 parent 919a3f8 commit 87aea3e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test/OpenApiClientTests/LegacyClient/RequestDocumentRegistrationLifetimeTests.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,10 @@ public async Task Request_document_registration_is_unaffected_by_preceding_dispo
320320
Data = new AirplaneDataInPostRequest
321321
{
322322
Type = AirplaneResourceType.Airplanes,
323-
Attributes = new AirplaneAttributesInPostRequest()
323+
Attributes = new AirplaneAttributesInPostRequest
324+
{
325+
Name = "Jay Jay the Jet Plane"
326+
}
324327
}
325328
};
326329

0 commit comments

Comments
 (0)