Skip to content

Commit

Permalink
Update scribereader tests (#983)
Browse files Browse the repository at this point in the history
  • Loading branch information
yaroliakh committed Jun 28, 2024
1 parent cd8c439 commit 5cc97b5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/utils/scribereader_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,19 +85,19 @@ def test_read_log_stream_for_action_run_yelp_clog():


@pytest.mark.parametrize(
"local_datetime, expected_date",
"local_datetime, expected_datetime",
[
(
datetime.datetime(2024, 2, 29, 23, 59, 59, tzinfo=datetime.timezone(datetime.timedelta(hours=+3))),
datetime.date(2024, 2, 29),
datetime.datetime(2024, 2, 29, 20, 59, 59, tzinfo=datetime.timezone.utc),
),
(
datetime.datetime(2024, 2, 29, 23, 59, 59, tzinfo=datetime.timezone(datetime.timedelta(hours=-3))),
datetime.date(2024, 3, 1),
datetime.datetime(2024, 3, 1, 2, 59, 59, tzinfo=datetime.timezone.utc),
),
],
)
def test_read_log_stream_for_action_run_yelp_clog_tz(local_datetime, expected_date):
def test_read_log_stream_for_action_run_yelp_clog_tz(local_datetime, expected_datetime):
with mock.patch(
"staticconf.read",
autospec=True,
Expand All @@ -121,7 +121,7 @@ def test_read_log_stream_for_action_run_yelp_clog_tz(local_datetime, expected_da
paasta_cluster="fake",
)
mock_s3_log_reader.return_value.get_log_reader.assert_called_once_with(
log_name=mock.ANY, min_date=expected_date, max_date=expected_date
log_name=mock.ANY, start_datetime=expected_datetime, end_datetime=expected_datetime
)


Expand Down

0 comments on commit 5cc97b5

Please sign in to comment.