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

Update fauxhai system version #30

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
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
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
language: ruby
rvm:
- 2.1
- 2.2.5
- 2.3.1
- 2.2
- 2.3
- 2.6

before_install: gem update bundler

Expand Down
2 changes: 1 addition & 1 deletion libraries/manager_network_protocol.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class ManagerNetworkProtocol < BaseResource
resource_name :ilo_manager_network_protocol

load_base_properties
property :timeout, Fixnum, required: true, equal_to: [15, 30, 60, 120, 0]
property :timeout, Integer, required: true, equal_to: [15, 30, 60, 120, 0]

action :set do
load_sdk
Expand Down
2 changes: 1 addition & 1 deletion spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
RSpec.configure do |config|
# Set the default platform and version
config.platform = 'redhat'
config.version = '7.2'
config.version = '7.6'
end

# General context for unit testing:
Expand Down