typo error in modeltests docstring
in tests/modeltests, fixture and user_commands are all signed with number 37, this is a typo error.
37.Fixtures. ./fixtures/models.py
37.User-registered management commands ./user_commands/models.py
And all docstring of models.py after number 37 should be changed, they are:
tests/modeltests/user_commands/models.py should be 38
tests/modeltests/test_client/models.py should be 39
tests/modeltests/empty/models.py should be 40
tests/modeltests/select_related/models.py should be 41
tests/modeltests/serializers/models.py should be 42
Change History
(8)
Owner: |
changed from nobody to anonymous
|
Status: |
new → assigned
|
Owner: |
changed from anonymous to bartuer
|
Status: |
assigned → new
|
Triage Stage: |
Unreviewed → Ready for checkin
|
Resolution: |
→ fixed
|
Status: |
assigned → closed
|
after upload my patch, find the patch has nothing! so I paste it here:
Index: tests/modeltests/select_related/models.py
===================================================================
--- tests/modeltests/select_related/models.py (revision 6782)
+++ tests/modeltests/select_related/models.py (working copy)
@@ -1,5 +1,5 @@
-40. Tests for select_related()
+41. Tests for select_related()
Index: tests/modeltests/empty/models.py
===================================================================
--- tests/modeltests/empty/models.py (revision 6782)
+++ tests/modeltests/empty/models.py (working copy)
@@ -1,5 +1,5 @@
-39. Empty model tests
+40. Empty model tests
Index: tests/modeltests/serializers/models.py
===================================================================
--- tests/modeltests/serializers/models.py (revision 6782)
+++ tests/modeltests/serializers/models.py (working copy)
@@ -1,6 +1,6 @@
-41. Serialization
+42. Serialization
Index: tests/modeltests/user_commands/models.py
===================================================================
--- tests/modeltests/user_commands/models.py (revision 6782)
+++ tests/modeltests/user_commands/models.py (working copy)
@@ -1,5 +1,5 @@
-37. User-registered management commands
+38. User-registered management commands
@@ -27,4 +27,4 @@
-"""}
\ No newline at end of file
+"""}
Index: tests/modeltests/test_client/models.py
===================================================================
--- tests/modeltests/test_client/models.py (revision 6782)
+++ tests/modeltests/test_client/models.py (working copy)
@@ -1,6 +1,6 @@
-38. Testing using the Test Client
+39. Testing using the Test Client