summaryrefslogtreecommitdiff
path: root/csharp/test/Ice/defaultServant/Client.cs
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2018-10-18 12:01:54 -0400
committerJose <pepone@users.noreply.github.com>2018-10-18 18:01:53 +0200
commit456001e3e4dbb3f15396c0598b6ddb5436ac3a2a (patch)
treefacb9db494f91b066a1c0b5e29c371ec523a82e7 /csharp/test/Ice/defaultServant/Client.cs
parentUpdate Xamarin test instructions (diff)
downloadice-456001e3e4dbb3f15396c0598b6ddb5436ac3a2a.tar.bz2
ice-456001e3e4dbb3f15396c0598b6ddb5436ac3a2a.tar.xz
ice-456001e3e4dbb3f15396c0598b6ddb5436ac3a2a.zip
Rework cs:namespace implementation (fix issue #239) (#249)
* Rework the cs:namespace implementation No longer rely on Ice.Packages. Fixes #239. * Renamed Ice/packagemd to Ice/namespacemd (C#) * Removed Ice.Package property from C# tests * Switched to get-only attribute, fixed Xamarin test
Diffstat (limited to 'csharp/test/Ice/defaultServant/Client.cs')
-rw-r--r--csharp/test/Ice/defaultServant/Client.cs4
1 files changed, 1 insertions, 3 deletions
diff --git a/csharp/test/Ice/defaultServant/Client.cs b/csharp/test/Ice/defaultServant/Client.cs
index 980df00cc5c..53cf576a3fe 100644
--- a/csharp/test/Ice/defaultServant/Client.cs
+++ b/csharp/test/Ice/defaultServant/Client.cs
@@ -17,9 +17,7 @@ namespace Ice
{
public override void run(string[] args)
{
- var properties = createTestProperties(ref args);
- properties.setProperty("Ice.Package.Test", "Ice.defaultServant");
- using(var communicator = initialize(properties))
+ using(var communicator = initialize(ref args))
{
AllTests.allTests(this);
}