aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorSam Scholten2025-10-27 19:09:25 +1000
committerSam Scholten2025-10-27 19:17:05 +1000
commit20320a87d98c8517869f5e7c0fcd66bfdc090713 (patch)
tree624d3fde714533168a618490d96006c87b0a0807 /tests
parentec29d6eda97ce1e9d4121c6c19f91d12ec25947c (diff)
downloadtransivent-20320a87d98c8517869f5e7c0fcd66bfdc090713.tar.gz
transivent-20320a87d98c8517869f5e7c0fcd66bfdc090713.zip
drop loguru
Diffstat (limited to 'tests')
-rw-r--r--tests/test_diffusion_simple.py2
-rw-r--r--tests/test_event_processor.py2
-rw-r--r--tests/test_simple.py4
3 files changed, 5 insertions, 3 deletions
diff --git a/tests/test_diffusion_simple.py b/tests/test_diffusion_simple.py
index 96e77df..4250320 100644
--- a/tests/test_diffusion_simple.py
+++ b/tests/test_diffusion_simple.py
@@ -6,7 +6,7 @@ Simple test for diffusion processing with clear events.
import numpy as np
import matplotlib.pyplot as plt
-from transivent import (
+from transivent.event_processor import (
extract_event_waveforms,
calculate_msd_parallel,
calculate_acf,
diff --git a/tests/test_event_processor.py b/tests/test_event_processor.py
index cd23334..44da603 100644
--- a/tests/test_event_processor.py
+++ b/tests/test_event_processor.py
@@ -5,7 +5,7 @@ import numpy as np
import matplotlib.pyplot as plt
# Test the event_processor module
-from transivent import (
+from transivent.event_processor import (
extract_event_waveforms,
calculate_msd_parallel,
calculate_acf,
diff --git a/tests/test_simple.py b/tests/test_simple.py
index e86dbd6..e7a023b 100644
--- a/tests/test_simple.py
+++ b/tests/test_simple.py
@@ -8,7 +8,7 @@ import numpy as np
# Test the event_processor module
try:
- from transivent import (
+ from transivent.event_processor import (
extract_event_waveforms,
calculate_msd_parallel,
calculate_acf,
@@ -18,6 +18,8 @@ try:
print("✓ Successfully imported event_processor functions")
except ImportError as e:
print(f"✗ Import error: {e}")
+ import traceback
+ traceback.print_exc()
sys.exit(1)
def test_extract_event_waveforms():