diff options
Diffstat (limited to 'java/test/Ice/custom/Client.java')
-rw-r--r-- | java/test/Ice/custom/Client.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/java/test/Ice/custom/Client.java b/java/test/Ice/custom/Client.java index 4bed35f2413..d4eb5361446 100644 --- a/java/test/Ice/custom/Client.java +++ b/java/test/Ice/custom/Client.java @@ -7,12 +7,14 @@ // // ********************************************************************** +import Test.*; + public class Client { private static int run(String[] args, Ice.Communicator communicator) { - TestPrx test = AllTests.allTests(communicator); + TestIntfPrx test = AllTests.allTests(communicator); test.shutdown(); return 0; } |