mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-12 07:55:24 +00:00
This commit fixes an issue in HttpExporterTemplateTests caused by the migration from Strings#splitStringToArray to String#split. Namely, the previous would split a string like "/x/y/z/" into { "x", "y", "z" } but the former will split this into { "", "x", "y", "z" }. This commit modifies the test logic to respond to this change. Original commit: elastic/x-pack-elasticsearch@c567b17180