summaryrefslogtreecommitdiff
path: root/cs/test/IceGrid/simple/Client.cs
diff options
context:
space:
mode:
Diffstat (limited to 'cs/test/IceGrid/simple/Client.cs')
-rw-r--r--cs/test/IceGrid/simple/Client.cs38
1 files changed, 19 insertions, 19 deletions
diff --git a/cs/test/IceGrid/simple/Client.cs b/cs/test/IceGrid/simple/Client.cs
index 3f9288b5619..60ac9178368 100644
--- a/cs/test/IceGrid/simple/Client.cs
+++ b/cs/test/IceGrid/simple/Client.cs
@@ -14,26 +14,26 @@ public class Client
private static int
run(string[] args, Ice.Communicator communicator)
{
- bool withDeploy = false;
- for(int i = 0; i < args.Length; i++)
- {
- if(args[i].Equals("--with-deploy"))
- {
- withDeploy = true;
- break;
- }
- }
+ bool withDeploy = false;
+ for(int i = 0; i < args.Length; i++)
+ {
+ if(args[i].Equals("--with-deploy"))
+ {
+ withDeploy = true;
+ break;
+ }
+ }
- if(!withDeploy)
- {
- AllTests.allTests(communicator);
- }
- else
- {
- AllTests.allTestsWithDeploy(communicator);
- }
+ if(!withDeploy)
+ {
+ AllTests.allTests(communicator);
+ }
+ else
+ {
+ AllTests.allTestsWithDeploy(communicator);
+ }
- return 0;
+ return 0;
}
public static void Main(string[] args)
@@ -48,7 +48,7 @@ public class Client
}
catch (Ice.LocalException ex)
{
- System.Console.Error.WriteLine(ex);
+ System.Console.Error.WriteLine(ex);
status = 1;
}