From bc042c7408672d706bda5dc1ae335690cb91af8f Mon Sep 17 00:00:00 2001 From: "Mark E. Fuller" Date: Wed, 10 Jul 2024 10:28:27 +0200 Subject: [PATCH] make test actually test and drop unneeded dep --- tests/conftest.py | 2 -- tests/test_methods.py | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index ce475219..27dbff74 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -10,8 +10,6 @@ from __future__ import annotations -from typing import List - import pytest from _pytest.nodes import Item diff --git a/tests/test_methods.py b/tests/test_methods.py index bff53561..bf2d41f1 100644 --- a/tests/test_methods.py +++ b/tests/test_methods.py @@ -13,7 +13,7 @@ def hello_test(): This defines the expected usage, which can then be used in various test cases. Pytest will not execute this code directly, since the function does not contain the prefix "test" """ - hello_world() + assert hello_world() == "string-0" def test_hello(unit_test_mocks: None):