Skip to content
This repository has been archived by the owner on Jan 26, 2022. It is now read-only.

Commit

Permalink
make app names fuzzier in integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Dennis Schmidt & Ian Baker committed Mar 12, 2013
1 parent 469cb00 commit efcf0fa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion spec/features/v1/new_user_flow_spec.rb
Expand Up @@ -11,7 +11,7 @@
let(:password) { ENV['VMC_TEST_PASSWORD'] }

let(:app) do
fuzz = TRAVIS_BUILD_ID || Time.new.to_f.to_s.gsub(".", "_")
fuzz = TRAVIS_BUILD_ID.to_s + Time.new.to_f.to_s.gsub(".", "_")
"hello-sinatra-#{fuzz}"
end

Expand Down
2 changes: 1 addition & 1 deletion spec/features/v2/push_flow_spec.rb
Expand Up @@ -11,7 +11,7 @@
let(:password) { ENV['VMC_V2_TEST_PASSWORD'] }

let(:app) do
fuzz = TRAVIS_BUILD_ID || Time.new.to_f.to_s.gsub(".", "_")
fuzz = TRAVIS_BUILD_ID.to_s + Time.new.to_f.to_s.gsub(".", "_")
"hello-sinatra-#{fuzz}"
end

Expand Down

0 comments on commit efcf0fa

Please sign in to comment.