mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
[rackspace|identity] user should be alphanumeric
This commit is contained in:
parent
f204c41e55
commit
aa853488c9
2 changed files with 2 additions and 2 deletions
|
@ -4,7 +4,7 @@ Shindo.tests('Fog::Rackspace::Identity | user', ['rackspace']) do
|
|||
|
||||
service = Fog::Rackspace::Identity.new
|
||||
options = {
|
||||
:username => "fog_user_#{Time.now.to_i.to_s}",
|
||||
:username => "fog#{Time.now.to_i.to_s}",
|
||||
:email => 'email@example.com',
|
||||
:enabled => true
|
||||
}
|
||||
|
|
|
@ -3,7 +3,7 @@ Shindo.tests('Fog::Rackspace::Identity | users', ['rackspace']) do
|
|||
pending if Fog.mocking?
|
||||
|
||||
service = Fog::Rackspace::Identity.new
|
||||
username = "fog_user_#{Time.now.to_i.to_s}"
|
||||
username = "fog#{Time.now.to_i.to_s}"
|
||||
options = {
|
||||
:username => username,
|
||||
:email => 'email@example.com',
|
||||
|
|
Loading…
Reference in a new issue