diff options
author | Benoit Foucher <benoit@zeroc.com> | 2012-11-06 16:58:38 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2012-11-06 16:58:38 +0100 |
commit | 948c18ac0abd7ff12d29da584ad7b21822945a2f (patch) | |
tree | 3501e0c45ee39020ee537cbd6413db0659d04141 /java/test/Ice/objects/UnexpectedObjectExceptionTestI.java | |
parent | 3.5b TP installer build (diff) | |
download | ice-948c18ac0abd7ff12d29da584ad7b21822945a2f.tar.bz2 ice-948c18ac0abd7ff12d29da584ad7b21822945a2f.tar.xz ice-948c18ac0abd7ff12d29da584ad7b21822945a2f.zip |
Lots of minor test and build fixes.
- Added --client-home option to allow running tests against clients
from another source distribution.
- Fixed bogus identation in some Makefiles
- Fixed installation of Ice for Java on platforms where the GUI isn't built.
- Added more cross language tests.
- Fixed issues with running the tests against a binary distribution.
Diffstat (limited to 'java/test/Ice/objects/UnexpectedObjectExceptionTestI.java')
-rw-r--r-- | java/test/Ice/objects/UnexpectedObjectExceptionTestI.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/test/Ice/objects/UnexpectedObjectExceptionTestI.java b/java/test/Ice/objects/UnexpectedObjectExceptionTestI.java index f3dfd26dd3c..3fa16905553 100644 --- a/java/test/Ice/objects/UnexpectedObjectExceptionTestI.java +++ b/java/test/Ice/objects/UnexpectedObjectExceptionTestI.java @@ -20,7 +20,7 @@ public final class UnexpectedObjectExceptionTestI extends Ice.Blobject { Ice.Communicator communicator = current.adapter.getCommunicator(); Ice.OutputStream out = Ice.Util.createOutputStream(communicator); - out.startEncapsulation(); + out.startEncapsulation(current.encoding, Ice.FormatType.DefaultFormat); AlsoEmpty ae = new AlsoEmpty(); AlsoEmptyHelper.write(out, ae); out.writePendingObjects(); |