summaryrefslogtreecommitdiff
path: root/py/test/Ice/exceptions/AllTests.py
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2006-06-28 05:18:43 +0000
committerMichi Henning <michi@zeroc.com>2006-06-28 05:18:43 +0000
commit2ebdeea700fd7d02f13ccccc2dd77557f207db69 (patch)
treec29f10ef9d8a9c61f9a3eade96c288ca47ec8b73 /py/test/Ice/exceptions/AllTests.py
parentRenamed Sun's scandir and isalphasort to ice_scandir and ice_isalphasort (diff)
downloadice-2ebdeea700fd7d02f13ccccc2dd77557f207db69.tar.bz2
ice-2ebdeea700fd7d02f13ccccc2dd77557f207db69.tar.xz
ice-2ebdeea700fd7d02f13ccccc2dd77557f207db69.zip
Bug 472.
Diffstat (limited to 'py/test/Ice/exceptions/AllTests.py')
-rw-r--r--py/test/Ice/exceptions/AllTests.py9
1 files changed, 1 insertions, 8 deletions
diff --git a/py/test/Ice/exceptions/AllTests.py b/py/test/Ice/exceptions/AllTests.py
index 96bbaa38420..7771c41b397 100644
--- a/py/test/Ice/exceptions/AllTests.py
+++ b/py/test/Ice/exceptions/AllTests.py
@@ -321,7 +321,7 @@ def allTests(communicator):
adapter.deactivate()
print "ok"
- print "testing object factory registration exceptions... ",
+ print "testing object factory registration exception... ",
of = ObjectFactoryI()
communicator.addObjectFactory(of, "x")
try:
@@ -329,13 +329,6 @@ def allTests(communicator):
test(false)
except Ice.AlreadyRegisteredException:
pass
-
- communicator.removeObjectFactory("x")
- try:
- communicator.removeObjectFactory("x")
- test(false)
- except Ice.NotRegisteredException:
- pass
print "ok"
print "testing stringToProxy... ",