From 78b454679d1a9c5803df1baf02922036bde99c05 Mon Sep 17 00:00:00 2001 From: Assunta DeSanto Date: Mon, 2 Oct 2023 11:44:40 -0400 Subject: [PATCH] fixing formatting --- test/unit/app/managers/test_markdown_export.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/unit/app/managers/test_markdown_export.py b/test/unit/app/managers/test_markdown_export.py index 705ffd51bf86..db3f59e7f5dc 100644 --- a/test/unit/app/managers/test_markdown_export.py +++ b/test/unit/app/managers/test_markdown_export.py @@ -413,7 +413,9 @@ def test_get_invocation_time(self): result, extra_data = self._ready_export(example) assert "invocations" in extra_data assert "create_time" in extra_data["invocations"]["be8be0fd2ce547f6"] - assert extra_data["invocations"]["be8be0fd2ce547f6"]["create_time"] == invocation.create_time.strftime("%m/%d/%Y, %H:%M:%S") + assert extra_data["invocations"]["be8be0fd2ce547f6"]["create_time"] == invocation.create_time.strftime( + "%m/%d/%Y, %H:%M:%S" + ) def _ready_export(self, example): return ready_galaxy_markdown_for_export(self.trans, example)