summaryrefslogtreecommitdiff
path: root/tests/custom_pk
diff options
context:
space:
mode:
authorAdam Johnson <me@adamj.eu>2020-05-01 13:37:21 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2020-05-04 12:10:47 +0200
commitd17b380653da5f95885ce53468fe7aac60672841 (patch)
tree9fbe962d480093a45cf238d22596812637765c74 /tests/custom_pk
parent787981f9d1d5abc489a0b069e3353b8ad7aa9778 (diff)
Refs #30573 -- Rephrased "Of Course" and "Obvious(ly)" in documentation and comments.
Diffstat (limited to 'tests/custom_pk')
-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"
)