diff options
author | Jose <jose@zeroc.com> | 2018-06-01 21:25:44 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2018-06-01 21:25:44 +0200 |
commit | 53f3e283a591b9e142a7a15f5fbd6ace24e019d9 (patch) | |
tree | 728502ba24d0d8bf4b924e016a1d8c4bacc4cb64 /csharp/test/TestCommon/TestHelper.cs | |
parent | .NET Core test build fixes (diff) | |
download | ice-53f3e283a591b9e142a7a15f5fbd6ace24e019d9.tar.bz2 ice-53f3e283a591b9e142a7a15f5fbd6ace24e019d9.tar.xz ice-53f3e283a591b9e142a7a15f5fbd6ace24e019d9.zip |
Fix .NET Core test properties creation
Diffstat (limited to 'csharp/test/TestCommon/TestHelper.cs')
-rw-r--r-- | csharp/test/TestCommon/TestHelper.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/csharp/test/TestCommon/TestHelper.cs b/csharp/test/TestCommon/TestHelper.cs index 5a651ea7ebe..d96d786bccc 100644 --- a/csharp/test/TestCommon/TestHelper.cs +++ b/csharp/test/TestCommon/TestHelper.cs @@ -65,7 +65,7 @@ namespace Test public Ice.Properties createTestProperties(ref string[] args) { Ice.Properties properties = Ice.Util.createProperties(ref args); - properties.parseCommandLineOptions("Test", args); + args = properties.parseCommandLineOptions("Test", args); return properties; } |