@@ -50,7 +50,7 @@ public void IsCancelled_Returns_True_For_VariousCancelledActions(string action)
5050        var  result  =  new  ElicitResult  {  Action  =  action  } ; 
5151
5252        // Act 
53-         var  isCancelled  =  result . IsCancelled ; 
53+         var  isCancelled  =  result . IsCanceled ; 
5454
5555        // Assert 
5656        Assert . True ( isCancelled ) ; 
@@ -83,7 +83,7 @@ public void IsCancelled_Returns_True_For_DefaultAction()
8383        var  result  =  new  ElicitResult ( ) ; 
8484
8585        // Act & Assert 
86-         Assert . True ( result . IsCancelled ) ; 
86+         Assert . True ( result . IsCanceled ) ; 
8787    } 
8888
8989    [ Fact ] 
@@ -113,7 +113,7 @@ public void IsCancelled_Returns_False_For_Null_Action()
113113        var  result  =  new  ElicitResult  {  Action  =  null !  } ; 
114114
115115        // Act & Assert 
116-         Assert . False ( result . IsCancelled ) ; 
116+         Assert . False ( result . IsCanceled ) ; 
117117    } 
118118
119119    [ Theory ] 
@@ -132,7 +132,7 @@ public void JsonSerialization_ExcludesJsonIgnoredProperties(string action)
132132        // Assert 
133133        Assert . DoesNotContain ( "IsAccepted" ,  json ) ; 
134134        Assert . DoesNotContain ( "IsDeclined" ,  json ) ; 
135-         Assert . DoesNotContain ( "IsCancelled " ,  json ) ; 
135+         Assert . DoesNotContain ( "IsCanceled " ,  json ) ; 
136136        Assert . Contains ( $ "\" action\" :\" { action } \" ",  json ) ; 
137137    } 
138138
@@ -155,6 +155,6 @@ public void JsonRoundTrip_PreservesActionAndComputedProperties(string action, bo
155155        Assert . Equal ( action ,  deserialized . Action ) ; 
156156        Assert . Equal ( isAccepted ,  deserialized . IsAccepted ) ; 
157157        Assert . Equal ( isDeclined ,  deserialized . IsDeclined ) ; 
158-         Assert . Equal ( isCancelled ,  deserialized . IsCancelled ) ; 
158+         Assert . Equal ( isCancelled ,  deserialized . IsCanceled ) ; 
159159    } 
160160} 
0 commit comments