Skip to content

Commit 0f23fe2

Browse files
committed
Linting errors
1 parent 897b858 commit 0f23fe2

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

filenameprocessor/tests/test_file_key_validation.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ def test_is_file_in_directory_root(self):
3030
with self.subTest():
3131
self.assertEqual(is_file_in_directory_root(test_file_key), expected)
3232

33-
3433
def test_is_valid_datetime(self):
3534
"""Tests that is_valid_datetime returns True for valid datetimes, and false otherwise"""
3635
# Test case tuples are structured as (date_time_string, expected_result)

filenameprocessor/tests/test_logging_decorator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ def test_generate_and_send_logs(self):
126126
patch("logging_decorator.send_log_to_firehose") as mock_send_log_to_firehose, # noqa: E999
127127
patch("logging_decorator.time") as mock_time, # noqa: E999
128128
): # noqa: E999
129-
mock_time.time.return_value = 1672531200.123456 # Mocks the end time to be 0.123456s after the start time
129+
mock_time.time.return_value = 1672531200.123456 # Mocks end time to be 0.123456s after start
130130
generate_and_send_logs(start_time, base_log_data, additional_log_data, is_error_log=use_error_log,
131131
use_ms_precision=use_ms_precision)
132132

0 commit comments

Comments
 (0)