From 605c71ca60c6a60f663998a683cda51b44318b91 Mon Sep 17 00:00:00 2001 From: nh916 Date: Fri, 28 Jul 2023 15:53:54 -0700 Subject: [PATCH] formatted with trunk --- tests/conftest.py | 1 - tests/nodes/supporting_nodes/test_file.py | 3 ++- tests/test_integration.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index 432d7e2cd..d965fd444 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -16,7 +16,6 @@ import cript - HAS_INTEGRATION_TESTS_ENABLED: bool = True diff --git a/tests/nodes/supporting_nodes/test_file.py b/tests/nodes/supporting_nodes/test_file.py index 2b9533205..3a36db2cd 100644 --- a/tests/nodes/supporting_nodes/test_file.py +++ b/tests/nodes/supporting_nodes/test_file.py @@ -70,8 +70,9 @@ def test_local_file_source_upload_and_download(tmp_path_factory) -> None: 1. download the file to a temporary path 1. read that file text and assert that the string written and read are the same """ - import uuid import datetime + import uuid + file_text: str = ( f"This is an automated test from the Python SDK within " f"`tests/nodes/supporting_nodes/test_file.py/test_local_file_source_upload_and_download()` " diff --git a/tests/test_integration.py b/tests/test_integration.py index 4ca8f14a1..4cb27bbb2 100644 --- a/tests/test_integration.py +++ b/tests/test_integration.py @@ -2,10 +2,10 @@ import warnings import pytest +from conftest import HAS_INTEGRATION_TESTS_ENABLED from deepdiff import DeepDiff import cript -from conftest import HAS_INTEGRATION_TESTS_ENABLED def integrate_nodes_helper(cript_api: cript.API, project_node: cript.Project):