mirror of
https://github.com/opf/openproject.git
synced 2026-06-13 19:20:00 +00:00
0b87e7543f
Rolling out frozen string literals further by freezing all string literals in core specs.
14 lines
229 B
Ruby
14 lines
229 B
Ruby
# frozen_string_literal: true
|
|
|
|
module ParallelHelper
|
|
module_function
|
|
|
|
def port_for_ldap
|
|
ENV.fetch("TEST_ENV_NUMBER", "1").to_i + 12389
|
|
end
|
|
|
|
def port_for_app
|
|
ENV.fetch("TEST_ENV_NUMBER", "1").to_i + 3000
|
|
end
|
|
end
|