[pypy-svn] rev 1024 - pypy/trunk/src/pypy/objspace/std/test
hpk at codespeak.net
hpk at codespeak.net
Tue Jun 24 11:28:12 CEST 2003
Author: hpk
Date: Tue Jun 24 11:28:11 2003
New Revision: 1024
Modified:
pypy/trunk/src/pypy/objspace/std/test/test_dictobject.py
Log:
make the test use test.objspace('std') all the time.
There is no point in running this test on TrivialObjSpace
Modified: pypy/trunk/src/pypy/objspace/std/test/test_dictobject.py
==============================================================================
--- pypy/trunk/src/pypy/objspace/std/test/test_dictobject.py (original)
+++ pypy/trunk/src/pypy/objspace/std/test/test_dictobject.py Tue Jun 24 11:28:11 2003
@@ -80,7 +80,9 @@
self.assertNotEqual_w(wd1, wd4)
class Test_DictObject(test.AppTestCase):
-
+
+ def setUp(self):
+ self.space = test.objspace('std')
def test_clear(self):
d = {1:2, 3:4}
More information about the Pypy-commit
mailing list