Move array and tensor util test to corresponding folder

This commit is contained in:
mbsantiago 2025-04-22 08:50:43 +01:00
parent 7c89e82579
commit b82973ca1d
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
import numpy as np
from batdetect2.preprocess.arrays import adjust_width, extend_width
from batdetect2.utils.arrays import adjust_width, extend_width
def test_extend_width():

View File

@ -1,7 +1,7 @@
import numpy as np
import torch
from batdetect2.preprocess.tensors import adjust_width, make_width_divisible
from batdetect2.utils.tensors import adjust_width, make_width_divisible
def test_width_is_divisible_after_adjustment():