From 73eae76739ab5194d92fcc6d751f61f89a771185 Mon Sep 17 00:00:00 2001 From: Pablo Martin Date: Mon, 23 Jan 2023 14:06:48 +0100 Subject: [PATCH] Formatting --- tests/test_integration/test_connections.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/tests/test_integration/test_connections.py b/tests/test_integration/test_connections.py index cd3c083..5156f52 100644 --- a/tests/test_integration/test_connections.py +++ b/tests/test_integration/test_connections.py @@ -1,8 +1,8 @@ from lolafect.lolaconfig import build_lolaconfig from lolafect.connections import connect_to_trino, close_trino_connection -#__ __ _____ _ _ _____ _ _ _____ _ -#\ \ / /\ | __ \| \ | |_ _| \ | |/ ____| | +# __ __ _____ _ _ _____ _ _ _____ _ +# \ \ / /\ | __ \| \ | |_ _| \ | |/ ____| | # \ \ /\ / / \ | |__) | \| | | | | \| | | __| | # \ \/ \/ / /\ \ | _ /| . ` | | | | . ` | | |_ | | # \ /\ / ____ \| | \ \| |\ |_| |_| |\ | |__| |_| @@ -18,8 +18,10 @@ TEST_LOLACONFIG = build_lolaconfig(flow_name="testing-suite") def test_that_trino_connect_and_disconnect_works_properly(): - connection = connect_to_trino.run(trino_credentials=TEST_LOLACONFIG.TRINO_CREDENTIALS) + connection = connect_to_trino.run( + trino_credentials=TEST_LOLACONFIG.TRINO_CREDENTIALS + ) connection.cursor().execute("SELECT 1") - close_trino_connection.run(trino_connection=connection) \ No newline at end of file + close_trino_connection.run(trino_connection=connection)