File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ public class TaskCallbackEvent : EventBase
5454 /// Gets or sets the identity provided by the external service.
5555 /// </summary>
5656 [ JsonProperty ( PropertyName = "identity" ) ]
57- [ Required , MaxLength ( 63 ) ]
57+ [ Required ]
5858 public string Identity { get ; set ; }
5959
6060 /// <summary>
Original file line number Diff line number Diff line change @@ -41,9 +41,6 @@ public void ValidationThrowsOnError()
4141 runnerComplete . CorrelationId = Guid . NewGuid ( ) . ToString ( ) ;
4242 Assert . Throws < MessageValidationException > ( ( ) => runnerComplete . Validate ( ) ) ;
4343
44- runnerComplete . Identity = "1234567890123456789012345678901234567890123456789012345678901234567890" ;
45- Assert . Throws < MessageValidationException > ( ( ) => runnerComplete . Validate ( ) ) ;
46-
4744 runnerComplete . Identity = "123456789012345678901234567890123456789012345678901234567890123" ;
4845 var exception = Record . Exception ( ( ) => runnerComplete . Validate ( ) ) ;
4946 Assert . Null ( exception ) ;
You can’t perform that action at this time.
0 commit comments