Skip to content

Commit

Permalink
Properly convert property to env var in @QuarkusIntegrationTest
Browse files Browse the repository at this point in the history
Fixes: quarkusio#17810
(cherry picked from commit af9723d)
  • Loading branch information
geoand authored and gsmet committed Jun 10, 2021
1 parent 072a04c commit 43caf4a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ private List<String> toEnvVar(String property, String value) {
}

private String convertPropertyToEnVar(String property) {
return property.toUpperCase().replace('-', '_').replace('.', '_');
return property.toUpperCase().replace('-', '_').replace('.', '_').replace('/', '_');
}

@Override
Expand Down

0 comments on commit 43caf4a

Please sign in to comment.