Skip to content

Commit

Permalink
Merge pull request #1409 from nlake44/djinn-tc
Browse files Browse the repository at this point in the history
Update the test to not be order sensitive for EC2
  • Loading branch information
nlake44 committed Feb 3, 2014
2 parents 303299b + 9d5fa8c commit 8515f9b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions AppController/test/tc_djinn.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1398,8 +1398,10 @@ def test_get_property
'userappserver_public_ip' => 'public-ip',
'userappserver_private_ip' => 'private-ip'
})
assert_equal(userappserver_ips, djinn.get_property('userappserver_.*_ip',
@secret))
assert_equal(userappserver_ips['public-ip'], djinn.get_property('userappserver_.*_ip',
@secret)['public-ip'])
assert_equal(userappserver_ips['private-ip'], djinn.get_property('userappserver_.*_ip',
@secret)['private-ip'])
end


Expand Down

0 comments on commit 8515f9b

Please sign in to comment.