Skip to content

Commit

Permalink
erase unneded comments
Browse files Browse the repository at this point in the history
  • Loading branch information
WaVEV committed Jan 23, 2025
1 parent 83f31d9 commit 6a34c4a
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tests/model_fields_/test_embedded_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,6 @@ class MyModel(models.Model):

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

Expand Down

0 comments on commit 6a34c4a

Please sign in to comment.