diff options
Diffstat (limited to 'csharp/test/TestCommon/TestApp.cs')
-rw-r--r-- | csharp/test/TestCommon/TestApp.cs | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/csharp/test/TestCommon/TestApp.cs b/csharp/test/TestCommon/TestApp.cs index 330223ca25d..d840b1f40bf 100644 --- a/csharp/test/TestCommon/TestApp.cs +++ b/csharp/test/TestCommon/TestApp.cs @@ -85,15 +85,7 @@ namespace TestCommon if(_communicator != null) { - try - { - _communicator.destroy(); - } - catch(Exception ex) - { - Console.Out.WriteLine(_testName + ": " + ex); - status = 1; - } + _communicator.destroy(); _communicator = null; } return status; |