[Zope3-checkins] CVS: Zope3/src/zope/app/fssync/tests -
test_committer.py:1.16.6.2
Jim Fulton
jim at zope.com
Mon Sep 8 19:37:25 EDT 2003
Update of /cvs-repository/Zope3/src/zope/app/fssync/tests
In directory cvs.zope.org:/tmp/cvs-serv31668/src/zope/app/fssync/tests
Modified Files:
Tag: parentgeddon-branch
test_committer.py
Log Message:
got more tests to pass
=== Zope3/src/zope/app/fssync/tests/test_committer.py 1.16.6.1 => 1.16.6.2 ===
--- Zope3/src/zope/app/fssync/tests/test_committer.py:1.16.6.1 Mon Sep 8 14:21:37 2003
+++ Zope3/src/zope/app/fssync/tests/test_committer.py Mon Sep 8 18:36:53 2003
@@ -181,12 +181,6 @@
committer.set_item(container, "foo", 24, replace=True)
self.assertEqual(container.holding, {"foo": 24})
- def test_set_item_icontainer_error_existing(self):
- container = PretendContainer()
- committer.set_item(container, "foo", 42)
- self.assertRaises(KeyError, committer.set_item,
- container, "foo", 42)
-
def test_set_item_icontainer_error_nonexisting(self):
container = PretendContainer()
self.assertRaises(KeyError, committer.set_item,
More information about the Zope3-Checkins
mailing list