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)