summaryrefslogtreecommitdiff
path: root/csharp/test
diff options
context:
space:
mode:
Diffstat (limited to 'csharp/test')
-rw-r--r--csharp/test/Ice/servantLocator/AllTests.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/csharp/test/Ice/servantLocator/AllTests.cs b/csharp/test/Ice/servantLocator/AllTests.cs
index f52a592e4de..add7e4d99d5 100644
--- a/csharp/test/Ice/servantLocator/AllTests.cs
+++ b/csharp/test/Ice/servantLocator/AllTests.cs
@@ -98,7 +98,8 @@ public class AllTests : TestCommon.TestApp
}
catch(UnknownLocalException ex)
{
- test(ex.unknown.IndexOf("Ice::SocketException") >= 0);
+ test(ex.unknown.IndexOf("Ice::SocketException") >= 0 ||
+ ex.unknown.IndexOf("Ice.SocketException") >= 0);
}
catch(System.Exception)
{