Skip to content

Commit

Permalink
minor document changes
Browse files Browse the repository at this point in the history
  • Loading branch information
xod442 committed Apr 21, 2022
1 parent 16b1416 commit a4e8a0b
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 11 deletions.
2 changes: 2 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,5 @@ For more information, please visit the project home page at `GITHub.com <https:/
What's Changed:

0.1.0 Initial Release

0.1.1 Fixed import under __inity__.py file RK 04212022
2 changes: 1 addition & 1 deletion pyarubaimc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
Copyright (c) 2022 Aruba, a Hewlett Packard Enterprise company
version 0.1.0 - init release
version 0.1.1 - init release.
"""
from pyarubaimc.plat import (alarms, device)
2 changes: 1 addition & 1 deletion pyarubaimc/plat/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-

"""
Copyright 2015 Hewlett Packard Enterprise Development LP
Copyright 2022 Hewlett Packard Enterprise Development LP
Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in
compliance with the License. You may obtain a copy of the License at
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
setup(
name = 'pyarubaimc',
packages = ['pyarubaimc'],
version = '0.1.0',
version = '0.1.1',
description = 'A python binding to work with the Aruba IMC API',
author = 'Rick Kauffman',
author_email = '[email protected]',
Expand Down
2 changes: 1 addition & 1 deletion tests/test_machine.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
a specific vendors device, change the value of that specific variable to None and all
tests associated with that specific vendor will automatically be skipped."""

from pyhpearuba.auth import *
from pyarubaimc.auth import *

auth = arubaAuth("http://", "10.101.0.203", "8080", "admin", "admin")

Expand Down
4 changes: 1 addition & 3 deletions tests/test_pyarubaimc_objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"""

from unittest import TestCase
from pyhpeimc.objects import *
from pyarubaimc.objects import *
from test_machine import *


Expand Down Expand Up @@ -171,5 +171,3 @@ def test_deallocate_host_ip(self):
hosts = [host['ip'] for host in Scope1.hosts]
self.assertNotIn(term_access_ipam_host, hosts)
delete_ip_scope(term_access_ipam_network_scope, auth.creds, auth.url)


2 changes: 1 addition & 1 deletion tests/test_pyarubaimc_plat_alarms.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

from unittest import TestCase

from pyhpeimc.plat.alarms import *
from pyarubaimc.plat.alarms import *
from test_machine import auth


Expand Down
4 changes: 1 addition & 3 deletions tests/test_pyarubaimc_plat_device.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

from nose.plugins.skip import SkipTest

from pyhpeimc.plat.device import *
from pyarubaimc.plat.device import *
from test_machine import *


Expand Down Expand Up @@ -3398,5 +3398,3 @@ def test_set_inteface_down(self):
set_inteface_up('9', auth.creds, auth.url, devip=Juniper_Router)
self.assertIs(type(int_down_response), int)
self.assertIs(int_down_response, 204)


0 comments on commit a4e8a0b

Please sign in to comment.