summaryrefslogtreecommitdiff
path: root/csharp/test/Ice/stream/Client.cs
diff options
context:
space:
mode:
Diffstat (limited to 'csharp/test/Ice/stream/Client.cs')
-rw-r--r--csharp/test/Ice/stream/Client.cs7
1 files changed, 4 insertions, 3 deletions
diff --git a/csharp/test/Ice/stream/Client.cs b/csharp/test/Ice/stream/Client.cs
index e2a7837781b..8c5f5c846fa 100644
--- a/csharp/test/Ice/stream/Client.cs
+++ b/csharp/test/Ice/stream/Client.cs
@@ -15,9 +15,10 @@ namespace Ice
{
public override void run(string[] args)
{
- var properties = createTestProperties(ref args);
- properties.setProperty("Ice.Package.Test", "Ice.stream");
- using(var communicator = initialize(properties))
+ var initData = new InitializationData();
+ initData.typeIdNamespaces = new string[]{"Ice.stream.TypeId"};
+ initData.properties = createTestProperties(ref args);
+ using(var communicator = initialize(initData))
{
AllTests.allTests(this);
}