diff options
| author | 2023-09-16 11:51:40 -0700 | |
|---|---|---|
| committer | 2023-10-27 11:59:01 -0700 | |
| commit | 56376361a941383555e2db129baf34250d409b06 (patch) | |
| tree | bf82c21e75140088f769ab35ff0e3a3646a752ba /tests/limits/test_timed.py | |
| parent | Merge #195 - Python 3.12 (diff) | |
Refactor modules into subpackages
Diffstat (limited to '')
| -rw-r--r-- | tests/limits/test_timed.py (renamed from tests/test_timed.py) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_timed.py b/tests/limits/test_timed.py index e46bd37..8a1119b 100644 --- a/tests/test_timed.py +++ b/tests/limits/test_timed.py @@ -2,7 +2,7 @@ import math import time from unittest import TestCase -from snekbox.utils.timed import time_limit +from snekbox.limits.timed import time_limit class TimedTests(TestCase): |