From d17b380653da5f95885ce53468fe7aac60672841 Mon Sep 17 00:00:00 2001 From: Adam Johnson Date: Fri, 1 May 2020 13:37:21 +0100 Subject: Refs #30573 -- Rephrased "Of Course" and "Obvious(ly)" in documentation and comments. --- tests/custom_pk/tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/custom_pk') 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" ) -- cgit v1.3