File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
sdk/test/NetStandard/IntegrationTests/IntegrationTests/DynamoDB Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -68,10 +68,10 @@ private async Task TestUnsupportedTypes()
6868 Assert . Equal ( "Type Amazon.DNXCore.IntegrationTests.DynamoDB.DynamoDBTests+EmptyType is unsupported, it has no supported members" , exception . Message ) ;
6969
7070 // Verify that objects that are invalid result in exceptions
71- exception = await Assert . ThrowsAsync < InvalidOperationException > ( ( ) => SharedTestFixture . Context . ScanAsync < TimeSpan > ( new List < ScanCondition > ( ) , null ) . GetNextSetAsync ( ) ) ;
71+ exception = await Assert . ThrowsAsync < InvalidOperationException > ( ( ) => SharedTestFixture . Context . ScanAsync < TimeSpan > ( new List < ScanCondition > ( ) ) . GetNextSetAsync ( ) ) ;
7272 Assert . Equal ( "Type System.TimeSpan is unsupported, it cannot be instantiated" , exception . Message ) ;
7373
74- exception = await Assert . ThrowsAsync < InvalidOperationException > ( ( ) => SharedTestFixture . Context . ScanAsync < EmptyType > ( new List < ScanCondition > ( ) , null ) . GetNextSetAsync ( ) ) ;
74+ exception = await Assert . ThrowsAsync < InvalidOperationException > ( ( ) => SharedTestFixture . Context . ScanAsync < EmptyType > ( new List < ScanCondition > ( ) ) . GetNextSetAsync ( ) ) ;
7575 Assert . Equal ( "Type Amazon.DNXCore.IntegrationTests.DynamoDB.DynamoDBTests+EmptyType is unsupported, it has no supported members" , exception . Message ) ;
7676 }
7777
You can’t perform that action at this time.
0 commit comments