Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSascha Silbe <sascha-pgp@silbe.org>2010-02-28 14:39:10 (GMT)
committer Sascha Silbe <sascha-pgp@silbe.org>2010-02-28 14:39:10 (GMT)
commit16b01f682209ff418de14d5e85cb1a0080ea99f3 (patch)
tree70b1d61e501c7e8b971e412fb6722e01f8f11aff
parent4913ddb0555775c5a4ba316207ea9c036d60c7c7 (diff)
fix typos
-rw-r--r--tests/test_massops.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_massops.py b/tests/test_massops.py
index 234487d..ddc5242 100644
--- a/tests/test_massops.py
+++ b/tests/test_massops.py
@@ -45,7 +45,7 @@ class MassOpsTestCase(unittest.TestCase):
_create_content = 'Foo bar\n'*1000
def test_create(self):
- """Run save() lots of times to create new objects."""
+ """Run create() lots of times to create new objects."""
for i in range(NUM_RUNS):
content_file = tempfile.NamedTemporaryFile()
content_file.write(self._create_content)
@@ -85,7 +85,7 @@ class MassOpsTestCase(unittest.TestCase):
self.assertEquals(total_count, len(entries))
@repeat
- def test_find_all_title(self):
+ def test_find_all_reverse_title(self):
"""Run find() to list all entries ordered by title (reversed)."""
entries, total_count = self._datastore.find({'order_by':
['-title']}, ['tree_id'], byte_arrays=True)