summaryrefslogtreecommitdiff
path: root/tests/file_storage
diff options
context:
space:
mode:
authorLiyang Zhang <sudo.liyang@gmail.com>2023-03-20 02:07:23 -0500
committerGitHub <noreply@github.com>2023-03-20 08:07:23 +0100
commitf9f9215d3e5500d9a8d0bec0936480ba34d42e88 (patch)
treed5b1b014c7dd155ea466275cb37d906151d3ae13 /tests/file_storage
parentb295b311712b598c053f7fa8cf6e6882217e35d9 (diff)
downloaddjango-f9f9215d3e5500d9a8d0bec0936480ba34d42e88.tar.gz
Fixed some typos in comments, docstrings, and tests.
Diffstat (limited to 'tests/file_storage')
-rw-r--r--tests/file_storage/test_inmemory_storage.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/file_storage/test_inmemory_storage.py b/tests/file_storage/test_inmemory_storage.py
index b1d2e2e5a1..13ae9b9482 100644
--- a/tests/file_storage/test_inmemory_storage.py
+++ b/tests/file_storage/test_inmemory_storage.py
@@ -161,7 +161,7 @@ class MemoryStorageTimesTests(unittest.TestCase):
self.assertTrue(new_modified_time > modified_time)
def test_file_accessed_time(self):
- """File accessed time should chage after consecutive opening."""
+ """File accessed time should change after consecutive opening."""
self.storage.save("file.txt", ContentFile("test"))
accessed_time = self.storage.get_accessed_time("file.txt")