Skip to content

Commit 6a34c4a

Browse files
committed
erase unneded comments
1 parent 83f31d9 commit 6a34c4a

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

tests/model_fields_/test_embedded_model.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,6 @@ class MyModel(models.Model):
229229

230230
class SubqueryExistsTests(TestCase):
231231
def setUpTestData(self):
232-
# Create test data
233232
address1 = Address(city="New York", state="NY", zip_code=10001)
234233
address2 = Address(city="Boston", state="MA", zip_code=20002)
235234
author1 = Author(name="Alice", age=30, address=address1)
@@ -245,7 +244,6 @@ def setUpTestData(self):
245244
library2 = Library.objects.create(
246245
name="Community Library", location="Suburbs", best_seller="Book 1"
247246
)
248-
# Add books to libraries
249247
library1.books.add(book1, book2)
250248
library2.books.add(book2)
251249

0 commit comments

Comments
 (0)