From 388420e61318280931eec684bcd0c2917e9cb9ba Mon Sep 17 00:00:00 2001 From: "Alexander V. Chernikov" Date: Sun, 2 Apr 2023 10:17:37 +0000 Subject: tests: fix utils import in netlink tests MFC after: 2 weeks --- tests/atf_python/sys/netlink/attrs.py | 4 ++-- tests/atf_python/sys/netlink/utils.py | 2 -- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/tests/atf_python/sys/netlink/attrs.py b/tests/atf_python/sys/netlink/attrs.py index 142341b1b729..f6fe9ee43c98 100644 --- a/tests/atf_python/sys/netlink/attrs.py +++ b/tests/atf_python/sys/netlink/attrs.py @@ -2,8 +2,8 @@ import socket import struct from enum import Enum -from atf_python.sys.net.netlink.utils import align4 -from atf_python.sys.net.netlink.utils import enum_or_int +from atf_python.sys.netlink.utils import align4 +from atf_python.sys.netlink.utils import enum_or_int class NlAttr(object): diff --git a/tests/atf_python/sys/netlink/utils.py b/tests/atf_python/sys/netlink/utils.py index 86a910ce6590..7a41791b5318 100644 --- a/tests/atf_python/sys/netlink/utils.py +++ b/tests/atf_python/sys/netlink/utils.py @@ -5,8 +5,6 @@ from typing import Dict from typing import List from typing import NamedTuple -from atf_python.sys.netlink.attrs import NlAttr - class NlConst: AF_NETLINK = 38 -- cgit v1.2.3