Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jtmst committed Dec 17, 2024
1 parent c1a2c01 commit 604c6f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bloom_nofos/nofos/api/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def test_import_nofo(self):
"""Test importing a valid NOFO using fixture data"""
# Prepare fixture data by removing fields we don't want
import_data = self.fixture_data.copy()
excluded_fields = ["id", "archived", "status", "coach", "designer", "group"]
excluded_fields = ["id", "archived", "status", "group"]
for field in excluded_fields:
import_data.pop(field, None)

Expand Down Expand Up @@ -121,7 +121,7 @@ def test_import_nofo_with_id(self):
import_data["id"] = 999

# Remove fields we don't want
excluded_fields = ["archived", "status", "coach", "designer", "group"]
excluded_fields = ["archived", "status", "group"]
for field in excluded_fields:
import_data.pop(field, None)

Expand Down

0 comments on commit 604c6f3

Please sign in to comment.