Skip to content

Commit

Permalink
Remove log_captures that slipped in
Browse files Browse the repository at this point in the history
  • Loading branch information
yaugenst-flex committed Jun 6, 2024
1 parent d6b3935 commit c5c5fb3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion tests/test_components/test_medium.py
Original file line number Diff line number Diff line change
Expand Up @@ -836,7 +836,7 @@ def test_coaxial_lumped_resistor():
)


def test_custom_medium(log_capture): # noqa: F811
def test_custom_medium(log_capture):
Nx, Ny, Nz, Nf = 4, 3, 1, 1
X = np.linspace(-1, 1, Nx)
Y = np.linspace(-1, 1, Ny)
Expand Down
7 changes: 2 additions & 5 deletions tests/test_package/test_material_library.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,10 @@
material_library,
)

from ..utils import (
assert_log_level,
log_capture, # noqa: F401
)
from ..utils import assert_log_level


def test_warning_default_variant_switching(log_capture): # noqa: F811
def test_warning_default_variant_switching(log_capture):
"""Issue warning for switching default medium variant."""

# no warning for most materials with no default change
Expand Down

0 comments on commit c5c5fb3

Please sign in to comment.