From 7c7092eb8daf182d51445ae06aaeada1ed6d182b Mon Sep 17 00:00:00 2001 From: lucasdelimanogueira Date: Fri, 10 May 2024 21:01:25 -0300 Subject: [PATCH] small fix unittests --- tests/test_autograd.py | 2 +- tests/test_operations.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_autograd.py b/tests/test_autograd.py index d70cddd..a042ce6 100644 --- a/tests/test_autograd.py +++ b/tests/test_autograd.py @@ -1,6 +1,6 @@ import unittest import norch -from norch import utils +from norch.utils import utils_unittests as utils import torch import os diff --git a/tests/test_operations.py b/tests/test_operations.py index ed72ec6..e3fac6a 100644 --- a/tests/test_operations.py +++ b/tests/test_operations.py @@ -1,6 +1,6 @@ import unittest import norch -from norch import utils +from norch.utils import utils_unittests as utils import torch import sys import os