@@ -613,7 +613,7 @@ private Workspace CreateWorkspace(CreateWorkspace properties = null)
613613 #region DeleteWorkspace
614614 private object DeleteWorkspace ( string workspaceId )
615615 {
616- Thread . Sleep ( 1000 ) ;
616+ Thread . Sleep ( 10000 ) ;
617617 Console . WriteLine ( "\n Attempting to DeleteWorkspace()" ) ;
618618 var result = _service . DeleteWorkspace ( workspaceId : workspaceId ) ;
619619
@@ -733,7 +733,7 @@ private Intent CreateIntent(string workspaceId, CreateIntent body)
733733 #region DeleteIntent
734734 private object DeleteIntent ( string workspaceId , string intent )
735735 {
736- Thread . Sleep ( 1000 ) ;
736+ Thread . Sleep ( 10000 ) ;
737737 Console . WriteLine ( "\n Attempting to DeleteIntent()" ) ;
738738 var result = _service . DeleteIntent ( workspaceId : workspaceId , intent : intent ) ;
739739
@@ -833,7 +833,7 @@ private Example CreateExample(string workspaceId, string intent, CreateExample b
833833 #region DeleteExample
834834 private object DeleteExample ( string workspaceId , string intent , string text )
835835 {
836- Thread . Sleep ( 1000 ) ;
836+ Thread . Sleep ( 10000 ) ;
837837 Console . WriteLine ( "\n Attempting to DeleteExample()" ) ;
838838 var result = _service . DeleteExample ( workspaceId : workspaceId , intent : intent , text : text ) ;
839839
@@ -933,7 +933,7 @@ private Entity CreateEntity(string workspaceId, CreateEntity properties)
933933 #region DeleteEntity
934934 private object DeleteEntity ( string workspaceId , string entity )
935935 {
936- Thread . Sleep ( 1000 ) ;
936+ Thread . Sleep ( 10000 ) ;
937937 Console . WriteLine ( "\n Attempting to DeleteEntity()" ) ;
938938 var result = _service . DeleteEntity ( workspaceId : workspaceId , entity : entity ) ;
939939
@@ -1033,7 +1033,7 @@ private Value CreateValue(string workspaceId, string entity, CreateValue propert
10331033 #region DeleteValue
10341034 private object DeleteValue ( string workspaceId , string entity , string value )
10351035 {
1036- Thread . Sleep ( 1000 ) ;
1036+ Thread . Sleep ( 10000 ) ;
10371037 Console . WriteLine ( "\n Attempting to DeleteValue()" ) ;
10381038 var result = _service . DeleteValue ( workspaceId : workspaceId , entity : entity , value : value ) ;
10391039
@@ -1133,7 +1133,7 @@ private Synonym CreateSynonym(string workspaceId, string entity, string value, C
11331133 #region DeleteSynonym
11341134 private object DeleteSynonym ( string workspaceId , string entity , string value , string synonym )
11351135 {
1136- Thread . Sleep ( 1000 ) ;
1136+ Thread . Sleep ( 10000 ) ;
11371137 Console . WriteLine ( "\n Attempting to DeleteSynonym()" ) ;
11381138 var result = _service . DeleteSynonym ( workspaceId : workspaceId , entity : entity , value : value , synonym : synonym ) ;
11391139
@@ -1233,7 +1233,7 @@ private DialogNode CreateDialogNode(string workspaceId, CreateDialogNode propert
12331233 #region DeleteDialogNode
12341234 private object DeleteDialogNode ( string workspaceId , string dialogNode )
12351235 {
1236- Thread . Sleep ( 1000 ) ;
1236+ Thread . Sleep ( 10000 ) ;
12371237 Console . WriteLine ( "\n Attempting to DeleteDialogNode()" ) ;
12381238 var result = _service . DeleteDialogNode ( workspaceId : workspaceId , dialogNode : dialogNode ) ;
12391239
@@ -1373,7 +1373,7 @@ private Counterexample CreateCounterexample(string workspaceId, CreateCounterexa
13731373 #region DeleteCounterexample
13741374 private object DeleteCounterexample ( string workspaceId , string text )
13751375 {
1376- Thread . Sleep ( 1000 ) ;
1376+ Thread . Sleep ( 10000 ) ;
13771377 Console . WriteLine ( "\n Attempting to DeleteCounterexample()" ) ;
13781378 var result = _service . DeleteCounterexample ( workspaceId : workspaceId , text : text ) ;
13791379
0 commit comments