Skip to content

Commit

Permalink
Merge pull request #4330 from dokku/uuidgen
Browse files Browse the repository at this point in the history
Switch to using uuidgen for unique app names
  • Loading branch information
josegonzalez committed Jan 18, 2021
2 parents db5630e + 5300668 commit 5884576
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/test_helper.bash
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ PLUGIN_ENABLED_PATH=${PLUGIN_ENABLED_PATH:="$PLUGIN_PATH/enabled"}
PLUGIN_CORE_PATH=${PLUGIN_CORE_PATH:="$DOKKU_LIB_ROOT/core-plugins"}
PLUGIN_CORE_AVAILABLE_PATH=${PLUGIN_CORE_AVAILABLE_PATH:="$PLUGIN_CORE_PATH/available"}
CUSTOM_TEMPLATE_SSL_DOMAIN=customssltemplate.dokku.me
UUID=$(tr -dc 'a-z0-9' </dev/urandom | fold -w 32 | head -n 1)
UUID=$(uuidgen)
TEST_APP="rdmtestapp-${UUID}"
TEST_NETWORK="test-network-${UUID}"
SKIPPED_TEST_ERR_MSG="previous test failed! skipping remaining tests..."
Expand Down

0 comments on commit 5884576

Please sign in to comment.