summaryrefslogtreecommitdiff
path: root/jurt
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2004-03-25 10:04:37 +0000
committerKurt Zenker <kz@openoffice.org>2004-03-25 10:04:37 +0000
commit99668755948b8135191d8e29e9c6b93009682dea (patch)
treeb65c9b4e657cda926df8a6d98aaf855c2808aacd /jurt
parent730e14522773c8dbb0d58692cc11fceb5182dad7 (diff)
INTEGRATION: CWS kso11 (1.2.78); FILE MERGED
2004/03/11 08:49:34 sb 1.2.78.1: #115880# Cloned 112066.
Diffstat (limited to 'jurt')
-rw-r--r--jurt/test/com/sun/star/lib/uno/bridges/java_remote/ProxyFactory_Test.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/jurt/test/com/sun/star/lib/uno/bridges/java_remote/ProxyFactory_Test.java b/jurt/test/com/sun/star/lib/uno/bridges/java_remote/ProxyFactory_Test.java
index 40e755a33bbe..1ddd1891da4e 100644
--- a/jurt/test/com/sun/star/lib/uno/bridges/java_remote/ProxyFactory_Test.java
+++ b/jurt/test/com/sun/star/lib/uno/bridges/java_remote/ProxyFactory_Test.java
@@ -2,9 +2,9 @@
*
* $RCSfile: ProxyFactory_Test.java,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: vg $ $Date: 2003-05-22 09:10:42 $
+ * last change: $Author: kz $ $Date: 2004-03-25 11:04:37 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -84,14 +84,14 @@ public final class ProxyFactory_Test extends ComplexTestCase {
public void testQueryInterface() {
TestRequestHandler handler = new TestRequestHandler();
Type type = new Type(XNamingService.class);
- Object proxy = new ProxyFactory(handler).create("TestOID", type);
+ Object proxy = new ProxyFactory(handler, null).create("TestOID", type);
assure("", proxy == ((IQueryInterface) proxy).queryInterface(type));
assure("", proxy == UnoRuntime.queryInterface(type, proxy));
}
public void testExceptionHandling() throws Exception {
TestRequestHandler handler = new TestRequestHandler();
- Object proxy = new ProxyFactory(handler).create(
+ Object proxy = new ProxyFactory(handler, null).create(
"TestOID", new Type(XNamingService.class));
testExceptions(
handler,