diff options
Diffstat (limited to 'csharp/test/Ice/invoke/Server.cs')
-rw-r--r-- | csharp/test/Ice/invoke/Server.cs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/csharp/test/Ice/invoke/Server.cs b/csharp/test/Ice/invoke/Server.cs index df4ce64f989..46ee9dd13a4 100644 --- a/csharp/test/Ice/invoke/Server.cs +++ b/csharp/test/Ice/invoke/Server.cs @@ -53,9 +53,7 @@ namespace Ice public override void run(string[] args) { bool async = args.Any(v => v.Equals("--async")); - var properties = createTestProperties(ref args); - properties.setProperty("Ice.Package.Test", "Ice.invoke"); - using(var communicator = initialize(properties)) + using(var communicator = initialize(ref args)) { communicator.getProperties().setProperty("TestAdapter.Endpoints", getTestEndpoint(0)); Ice.ObjectAdapter adapter = communicator.createObjectAdapter("TestAdapter"); |