Skip to content

Commit

Permalink
fix: Change variable name everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
jangjodi committed Apr 18, 2023
1 parent c7e31b3 commit fe0bd02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/sentry/tasks/test_weekly_escalating_forecast.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def test_single_group_escalating_forecast(self, mock_query_groups_past_counts):
fetched_forecast = EscalatingGroupForecast.fetch(group_list[0].project.id, group_list[0].id)
assert fetched_forecast.project_id == group_list[0].project.id
assert fetched_forecast.group_id == group_list[0].id
assert fetched_forecast.forecast == FORECAST_LIST_MOCK
assert fetched_forecast.forecast == DEFAULT_MINIMUM_CEILING_FORECAST
assert fetched_forecast.date_added.replace(
second=0, microsecond=0
) == approximate_date_added.replace(second=0, microsecond=0)
Expand All @@ -101,7 +101,7 @@ def test_multiple_groups_escalating_forecast(self, mock_query_groups_past_counts
)
assert fetched_forecast.project_id == group_list[i].project.id
assert fetched_forecast.group_id == group_list[i].id
assert fetched_forecast.forecast == FORECAST_LIST_MOCK
assert fetched_forecast.forecast == DEFAULT_MINIMUM_CEILING_FORECAST
assert fetched_forecast.date_added.replace(
second=0, microsecond=0
) == approximate_date_added.replace(second=0, microsecond=0)
Expand Down

0 comments on commit fe0bd02

Please sign in to comment.