mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 22:12:21 -04:00
7 lines
140 B
Python
7 lines
140 B
Python
def assertException(exception, func):
|
|
found = False
|
|
try:
|
|
func()
|
|
except exception:
|
|
found = True
|
|
assert found
|