tests: Add missing socket imports in tests 59/40559/3
authorTom Jones <thj@freebsd.org>
Wed, 7 Feb 2024 13:26:41 +0000 (13:26 +0000)
committerDave Wallace <dwallacelf@gmail.com>
Tue, 2 Apr 2024 02:25:22 +0000 (02:25 +0000)
Type: fix
Change-Id: I646f96517d3bda5c0f5644e6bb89ade7818fc466
Signed-off-by: Tom Jones <thj@freebsd.org>
test/test_ikev2.py
test/vpp_ipsec.py
test/vpp_papi_provider.py

index be788d8..d25b448 100644 (file)
@@ -1,4 +1,5 @@
 import os
+import socket
 import time
 from socket import inet_pton
 from cryptography import x509
index e354cfc..96a585a 100644 (file)
@@ -1,3 +1,5 @@
+import socket
+
 from vpp_object import VppObject
 from ipaddress import ip_address
 from vpp_papi import VppEnum
index d1c40a9..2d49bf2 100644 (file)
@@ -6,6 +6,7 @@
 #
 
 import os
+import socket
 import time
 import queue
 from six import moves, iteritems