diff --git a/kosmorro/locales/messages.pot b/kosmorro/locales/messages.pot index c05f67b..232f3eb 100644 --- a/kosmorro/locales/messages.pot +++ b/kosmorro/locales/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2026-01-01 10:39+0100\n" +"POT-Creation-Date: 2026-01-22 17:08+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/tests/dates.py b/tests/dates.py index dc4e2b5..468875c 100644 --- a/tests/dates.py +++ b/tests/dates.py @@ -9,9 +9,7 @@ def test_with_date(): result = execute(KOSMORRO + arg) assert result.successful - assert ( - result.stdout - == """Monday, January 27, 2020 + assert result.stdout == """Monday, January 27, 2020 New Moon First Quarter on Sunday, February 2, 2020 at 1:41 AM @@ -21,7 +19,6 @@ Expected events: Note: All the hours are given in UTC. """ - ) def test_with_incorrect_date_values(): diff --git a/tests/output.py b/tests/output.py index b239920..27fcbe1 100644 --- a/tests/output.py +++ b/tests/output.py @@ -15,9 +15,7 @@ def test_json_output(): KOSMORRO + ["--position=50.5876,3.0624", "-d2020-01-27", "--format=json"] ) assert result.successful - assert ( - result.stdout - == """{ + assert result.stdout == """{ "ephemerides": [ { "object": { @@ -150,7 +148,6 @@ def test_json_output(): ] } """ - ) def test_latex_output(): diff --git a/tests/position.py b/tests/position.py index aa82654..9ab7cdb 100644 --- a/tests/position.py +++ b/tests/position.py @@ -8,9 +8,7 @@ from .utils import ( def check_command_return(result): assert result.successful - assert ( - result.stdout - == """Monday, January 27, 2020 + assert result.stdout == """Monday, January 27, 2020 Object Rise time Culmination time Set time -------- ----------- ------------------ ---------- @@ -33,7 +31,6 @@ Expected events: Note: All the hours are given in UTC. """ - ) def test_with_position():