summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2012-04-21 12:43:07 +0100
committerLars Wirzenius <liw@liw.fi>2012-04-21 12:43:07 +0100
commit901e8407bdc783a64badd062601bb5dc88ff36da (patch)
tree7781a702cbf7ffcfebfc2fc6b25ed5cae0594b2b
parentddde65d1e1c2ddb8e142a33c080850db97945163 (diff)
downloadlarch-901e8407bdc783a64badd062601bb5dc88ff36da.tar.gz
Fix another typo in method name
-rw-r--r--larch/journal_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/larch/journal_tests.py b/larch/journal_tests.py
index 2851a09..0aa0f43 100644
--- a/larch/journal_tests.py
+++ b/larch/journal_tests.py
@@ -213,7 +213,7 @@ class ReadOnlyJournalTests(unittest.TestCase):
self.assertFalse(self.ro.exists('foo'))
def test_readonly_mode_does_not_check_for_modified_file(self):
- self.rw.ovewrite_file('foo', 'first')
+ self.rw.overwrite_file('foo', 'first')
self.rw.commit()
self.assertEqual(self.ro.cat('foo'), 'first')
self.rw.ovewrite_file('foo', 'second')