Skip to content

Commit

Permalink
make test actually test and drop unneeded dep
Browse files Browse the repository at this point in the history
  • Loading branch information
mefuller committed Jul 10, 2024
1 parent 6e9a2a4 commit bc042c7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@

from __future__ import annotations

from typing import List

import pytest
from _pytest.nodes import Item

Expand Down
2 changes: 1 addition & 1 deletion tests/test_methods.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit bc042c7

Please sign in to comment.