mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
[dns|examples] fix deprecated record#ip= usage
This commit is contained in:
parent
98579a342a
commit
a1ad4cf245
1 changed files with 3 additions and 3 deletions
|
@ -35,9 +35,9 @@ Shindo.tests('dns examples', 'dns') do
|
|||
# type is the type of record to create
|
||||
tests('@record = @zone.records.create').succeeds do
|
||||
@record = @zone.records.create(
|
||||
:ip => '1.2.3.4',
|
||||
:name => 'www.fogdnsexamples.com',
|
||||
:type => 'A'
|
||||
:value => '1.2.3.4',
|
||||
:name => 'www.fogdnsexamples.com',
|
||||
:type => 'A'
|
||||
)
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue