aboutsummaryrefslogtreecommitdiff
path: root/tests/errors
diff options
context:
space:
mode:
authornatsuoto <[email protected]>2026-07-16 17:31:49 +0530
committernatsuoto <[email protected]>2026-07-16 17:31:49 +0530
commit1b43c8dc09adb9b54609cc8a1916c99eb6fe75c9 (patch)
tree7731af50ed9117f8ac3d200591c3be23818d7b19 /tests/errors
parentb7ae2f3885d5ff84237c9da8bc0c64fe1a509465 (diff)
downloadedify-1b43c8dc09adb9b54609cc8a1916c99eb6fe75c9.tar.xz
edify-1b43c8dc09adb9b54609cc8a1916c99eb6fe75c9.zip
chore: enforce fully strict static typing across library, tests, and tooling with zero suppressions
Diffstat (limited to 'tests/errors')
-rw-r--r--tests/errors/context.test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/errors/context.test.py b/tests/errors/context.test.py
index 60e7add..4414849 100644
--- a/tests/errors/context.test.py
+++ b/tests/errors/context.test.py
@@ -7,7 +7,7 @@ from edify.errors.context import CallerContext, capture_caller_context
def test_capture_caller_context_returns_none_when_every_frame_is_inside_edify():
- with mock.patch("edify.errors.context.sys._getframe", return_value=None):
+ with mock.patch("edify.errors.context.inspect.currentframe", return_value=None):
assert capture_caller_context() is None