tests/test-atomictempfile.py
changeset 30332 318a24b52eeb
parent 29394 6d96658a22b0
child 32279 68c43a416585
--- a/tests/test-atomictempfile.py	Thu Nov 03 17:31:14 2016 -0700
+++ b/tests/test-atomictempfile.py	Mon Oct 17 23:16:55 2016 +0200
@@ -68,7 +68,7 @@
             repetition = 3
 
             # repeat atomic write with checkambig=True, to examine
-            # whether st_mtime is advanced multiple times as expecetd
+            # whether st_mtime is advanced multiple times as expected
             for j in xrange(repetition):
                 atomicwrite(True)
             newstat = os.stat(self._filename)
@@ -77,7 +77,7 @@
                 continue
 
             # st_mtime should be advanced "repetition" times, because
-            # all atomicwrite() occured at same time (in sec)
+            # all atomicwrite() occurred at same time (in sec)
             self.assertTrue(newstat.st_mtime ==
                             ((oldstat.st_mtime + repetition) & 0x7fffffff))
             # no more examination is needed, if assumption above is true