Skip to content

Commit f1ca076

Browse files
committed
Fix declaration order
1 parent 1cd04a2 commit f1ca076

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/JsonApiDotNetCoreTests/IntegrationTests/Meta/OperationsRequestMetaTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,8 +144,8 @@ public async Task Accepts_meta_in_update_resource_operation_with_ToMany_relation
144144
Dictionary<string, object?> identifierMeta1 = _fakers.IdentifierMeta.GenerateOne();
145145
Dictionary<string, object?> identifierMeta2 = _fakers.IdentifierMeta.GenerateOne();
146146

147-
string newFamilyName = _fakers.ProductFamily.GenerateOne().Name;
148147
ProductFamily existingFamily = _fakers.ProductFamily.GenerateOne();
148+
string newFamilyName = _fakers.ProductFamily.GenerateOne().Name;
149149
SupportTicket existingTicket1 = _fakers.SupportTicket.GenerateOne();
150150
SupportTicket existingTicket2 = _fakers.SupportTicket.GenerateOne();
151151

0 commit comments

Comments
 (0)