Skip to content

Commit

Permalink
Remove six module
Browse files Browse the repository at this point in the history
  • Loading branch information
gcoxmoz committed Dec 28, 2023
1 parent a8df414 commit 09fb11b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test/test_vpnkiller.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
import socket
import test.context # pylint: disable=unused-import
import mock
import six
from iamvpnlibrary import IAMVPNLibrary
from openvpn_management import VPNmgmt
from vpn_kill_users import VPNkiller, main
Expand Down Expand Up @@ -42,7 +41,7 @@ def test_00_init(self):
""" Verify that the self object was initialized """
self.assertIsInstance(self.library, VPNkiller,
'VPN killer is not a proper object')
self.assertIsInstance(self.library.vpn_socket, six.string_types,
self.assertIsInstance(self.library.vpn_socket, str,
'VPN killer vpn_socket was not a string')
self.assertIsInstance(self.library.iam, IAMVPNLibrary,
'VPN killer iam was not an IAM library')
Expand Down

0 comments on commit 09fb11b

Please sign in to comment.