Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

juniper modules/states docstring, parameter name fixes #57281

Merged
merged 20 commits into from
May 18, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions tests/unit/proxy/test_junos.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
import salt.proxy.junos as junos

import sys
Expand All @@ -8,16 +9,14 @@
from tests.support.unit import TestCase, skipIf

if sys.version < "3":
from six import StringIO
from salt.ext.six import StringIO
dmurphy18 marked this conversation as resolved.
Show resolved Hide resolved
else:
from io import BytesIO as StringIO

try:
from jnpr.junos.device import Device
from jnpr.junos.device import Device # pylint: disable=unused-import
from jnpr.junos.exception import ConnectError
import jxmlease # pylint: disable=unused-import
from ncclient.transport.ssh import SSHSession
from ncclient.devices.junos import JunosDeviceHandler

HAS_JUNOS = True
except ImportError:
Expand Down