Skip to content

Commit

Permalink
Fixing formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
sylviamclaughlin authored Jan 26, 2024
1 parent d8c5239 commit ce9b797
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions app/tests/commands/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,9 +184,7 @@ def test_get_user_locale_without_locale():


def test_basic_functionality_rearrange_by_datetime_ascending():
input_text = (
"2024-01-01 10:00:00 ET Message A\n" "2024-01-02 11:00:00 ET Message B"
)
input_text = "2024-01-01 10:00:00 ET Message A\n" "2024-01-02 11:00:00 ET Message B"
expected_output = (
"2024-01-01 10:00:00 ET Message A\n" "2024-01-02 11:00:00 ET Message B"
)
Expand All @@ -206,9 +204,7 @@ def test_multiline_entries_rearrange_by_datetime_ascending():


def test_entries_out_of_order_rearrange_by_datetime_ascending():
input_text = (
"2024-01-02 11:00:00 ET Message B\n" "2024-01-01 10:00:00 ET Message A"
)
input_text = "2024-01-02 11:00:00 ET Message B\n" "2024-01-01 10:00:00 ET Message A"
expected_output = (
"2024-01-01 10:00:00 ET Message A\n" "2024-01-02 11:00:00 ET Message B"
)
Expand Down

0 comments on commit ce9b797

Please sign in to comment.