summaryrefslogtreecommitdiff
path: root/csharp/test/Ice/servantLocator/ServerAMD.cs
diff options
context:
space:
mode:
Diffstat (limited to 'csharp/test/Ice/servantLocator/ServerAMD.cs')
-rw-r--r--csharp/test/Ice/servantLocator/ServerAMD.cs7
1 files changed, 4 insertions, 3 deletions
diff --git a/csharp/test/Ice/servantLocator/ServerAMD.cs b/csharp/test/Ice/servantLocator/ServerAMD.cs
index 02af2037637..3614fdf3020 100644
--- a/csharp/test/Ice/servantLocator/ServerAMD.cs
+++ b/csharp/test/Ice/servantLocator/ServerAMD.cs
@@ -19,9 +19,10 @@ namespace Ice
{
public override void run(string[] args)
{
- var properties = createTestProperties(ref args);
- properties.setProperty("Ice.Package.Test", "Ice.servantLocator.AMD");
- using(var communicator = initialize(properties))
+ var initData = new InitializationData();
+ initData.typeIdNamespaces = new string[]{"Ice.servantLocator.AMD.TypeId"};
+ initData.properties = createTestProperties(ref args);
+ using(var communicator = initialize(initData))
{
communicator.getProperties().setProperty("TestAdapter.Endpoints", getTestEndpoint(0));
communicator.getProperties().setProperty("Ice.Warn.Dispatch", "0");