Skip to content

Commit 8d315df

Browse files
authored
added ordered and AppMetadata fields check to FlightInfo test
1 parent a624fec commit 8d315df

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

csharp/test/Apache.Arrow.Flight.Tests/FlightInfoComparer.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,11 @@ public static void Compare(FlightInfo expected, FlightInfo actual)
3434
Assert.Equal(expected.TotalBytes, actual.TotalBytes);
3535

3636
Assert.Equal(expected.TotalRecords, actual.TotalRecords);
37+
38+
Assert.Equal(expected.Ordered, actual.Ordered);
39+
40+
Assert.Equal(expected.AppMetadata, actual.AppMetadata);
41+
3742
}
3843
}
3944
}

0 commit comments

Comments
 (0)