summaryrefslogtreecommitdiff
path: root/tests/custom_pk/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/custom_pk/tests.py')
-rw-r--r--tests/custom_pk/tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/custom_pk/tests.py b/tests/custom_pk/tests.py
index 934ed248ea..abb4ccd90b 100644
--- a/tests/custom_pk/tests.py
+++ b/tests/custom_pk/tests.py
@@ -191,8 +191,8 @@ class CustomPKTests(TestCase):
Business.objects.create(name='jaźń')
def test_unique_pk(self):
- # The primary key must also obviously be unique, so trying to create a
- # new object with the same primary key will fail.
+ # The primary key must also be unique, so trying to create a new object
+ # with the same primary key will fail.
Employee.objects.create(
employee_code=123, first_name="Frank", last_name="Jones"
)