From 7d8e04622c98615cab1e084b06f057df48c236e1 Mon Sep 17 00:00:00 2001 From: Cosmin Ciocan Date: Tue, 2 Jan 2024 10:59:53 +0100 Subject: [PATCH] Update tests imports --- tests/fixtures/fixtures.py | 2 +- tests/test_v1.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/fixtures/fixtures.py b/tests/fixtures/fixtures.py index 393a6b9..f898df6 100644 --- a/tests/fixtures/fixtures.py +++ b/tests/fixtures/fixtures.py @@ -7,7 +7,7 @@ sys.path.append(".") import pytest from IPython.core.interactiveshell import InteractiveShell -from v1.v1 import NVCCPlugin +from nvcc4jupyter.plugin import NVCCPlugin @pytest.fixture(scope="session") diff --git a/tests/test_v1.py b/tests/test_v1.py index 255ffa6..45f5d4c 100644 --- a/tests/test_v1.py +++ b/tests/test_v1.py @@ -11,7 +11,7 @@ import pytest sys.path.append(".") -from v1.v1 import NVCCPlugin +from nvcc4jupyter.plugin import NVCCPlugin def check_profiler_output(output: str):