Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
spacemanspiff2007 committed Dec 2, 2024
1 parent 5da0cef commit d33c3f6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_core/test_lib/test_format_traceback.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ def test_skip_objs(_setup_ir) -> None:
log.setLevel(logging.WARNING)
msg = exec_func(func_ir)
assert msg == r'''
File "test_core/test_lib/test_format_traceback.py", line 21 in exec_func
File "test_core/test_lib/test_format_traceback.py", line x in exec_func
--------------------------------------------------------------------------------
x | def exec_func(func) -> str:
x | try:
Expand All @@ -245,15 +245,15 @@ def test_skip_objs(_setup_ir) -> None:
func = <function func_ir at 0xAAAAAAAAAAAAAAAA>
------------------------------------------------------------
File "test_core/test_lib/test_format_traceback.py", line 255 in func_ir
File "test_core/test_lib/test_format_traceback.py", line x in func_ir
--------------------------------------------------------------------------------
x | def func_ir() -> None:
x | from HABApp.core.items import Item
x | Items = HABApp.core.Items
x | Items.add_item(Item('asdf'))
--> x | Items.get_item('1234')
File "internals/item_registry/item_registry.py", line 31 in get_item
File "internals/item_registry/item_registry.py", line x in get_item
--------------------------------------------------------------------------------
x | def get_item(self, name: str) -> ItemRegistryItem:
x | try:
Expand Down

0 comments on commit d33c3f6

Please sign in to comment.